add gnome on haze
This commit is contained in:
parent
0f4e6d95ea
commit
011bd84e6b
2 changed files with 31 additions and 0 deletions
|
|
@ -12,6 +12,7 @@
|
|||
./discord.nix
|
||||
./disk.nix
|
||||
./firefox.nix
|
||||
./gnome.nix
|
||||
./thunderbird.nix
|
||||
./hardware.nix
|
||||
./network.nix
|
||||
|
|
|
|||
30
hosts/haze/gnome.nix
Normal file
30
hosts/haze/gnome.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.gdm.enable = true;
|
||||
desktopManager.gnome.enable = true;
|
||||
xkb.layout = "fr";
|
||||
};
|
||||
|
||||
environment.gnome.excludePackages = (
|
||||
with pkgs;
|
||||
[
|
||||
atomix # puzzle game
|
||||
cheese # webcam tool
|
||||
epiphany # web browser
|
||||
# evince # document viewer
|
||||
geary # email reader
|
||||
gedit # text editor
|
||||
gnome-characters
|
||||
gnome-music
|
||||
gnome-photos
|
||||
gnome-terminal
|
||||
gnome-tour
|
||||
hitori # sudoku game
|
||||
iagno # go game
|
||||
tali # poker game
|
||||
totem # video player
|
||||
]
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue