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, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
# Enable the GNOME Desktop Environment.
|
# Enable the GNOME Desktop Environment.
|
||||||
displayManager.gdm.enable = true;
|
displayManager.gdm.enable = true;
|
||||||
|
@ -13,7 +16,7 @@
|
||||||
|
|
||||||
# https://nixos.wiki/wiki/GNOME
|
# https://nixos.wiki/wiki/GNOME
|
||||||
# Remove unwanted packages
|
# Remove unwanted packages
|
||||||
environment.gnome.excludePackages = (with unstable-nixpkgs; [
|
environment.gnome.excludePackages = (with unstable.pkgs; [
|
||||||
gnome.cheese
|
gnome.cheese
|
||||||
gnome.gnome-music
|
gnome.gnome-music
|
||||||
gnome.epiphany
|
gnome.epiphany
|
||||||
|
@ -31,7 +34,7 @@
|
||||||
gnome.simple-scan
|
gnome.simple-scan
|
||||||
]);
|
]);
|
||||||
|
|
||||||
environment.systemPackages = with unstable-nixpkgs; [
|
environment.systemPackages = with unstable.pkgs; [
|
||||||
# Gnome Extensions
|
# Gnome Extensions
|
||||||
gnomeExtensions.tiling-assistant
|
gnomeExtensions.tiling-assistant
|
||||||
gnomeExtensions.dash-to-dock
|
gnomeExtensions.dash-to-dock
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
config = { allowUnfree = true; };
|
config = { allowUnfree = true; };
|
||||||
};
|
};
|
||||||
|
|
||||||
unstable-pkgs = import unstable-nixpkgs {
|
unstable = import unstable-nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config = { allowUnfree = true; };
|
config = { allowUnfree = true; };
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue