test
This commit is contained in:
parent
e6a1fc180c
commit
152d7b1e5d
2 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,7 @@
|
|||
{ config, pkgs, ... }: {
|
||||
|
||||
|
||||
|
||||
services.xserver = {
|
||||
# Enable the GNOME Desktop Environment.
|
||||
displayManager.gdm.enable = true;
|
||||
|
@ -13,7 +16,7 @@
|
|||
|
||||
# https://nixos.wiki/wiki/GNOME
|
||||
# Remove unwanted packages
|
||||
environment.gnome.excludePackages = (with unstable-nixpkgs; [
|
||||
environment.gnome.excludePackages = (with unstable.pkgs; [
|
||||
gnome.cheese
|
||||
gnome.gnome-music
|
||||
gnome.epiphany
|
||||
|
@ -31,7 +34,7 @@
|
|||
gnome.simple-scan
|
||||
]);
|
||||
|
||||
environment.systemPackages = with unstable-nixpkgs; [
|
||||
environment.systemPackages = with unstable.pkgs; [
|
||||
# Gnome Extensions
|
||||
gnomeExtensions.tiling-assistant
|
||||
gnomeExtensions.dash-to-dock
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
config = { allowUnfree = true; };
|
||||
};
|
||||
|
||||
unstable-pkgs = import unstable-nixpkgs {
|
||||
unstable = import unstable-nixpkgs {
|
||||
inherit system;
|
||||
config = { allowUnfree = true; };
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue