Skip to content

Commit

Permalink
fix(nixos): Use updated package paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Jul 11, 2024
1 parent 658c651 commit c32958f
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions nixos-modules/desktop_environment.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,25 @@
};
environment = {
# don't install GNOME crap like Contacts, Photos, etc.
gnome.excludePackages = (with pkgs; [ gnome-photos gnome-tour ])
++ (with pkgs.gnome; [
cheese # webcam tool
gnome-music
epiphany # web browser
geary # email reader
gnome-characters
tali # poker game
iagno # go game
hitori # sudoku game
atomix # puzzle game
yelp # Help view
seahorse # password/ssh manager
gnome-contacts
gnome-calendar
gnome-initial-setup
]);
gnome.excludePackages = (with pkgs; [
gnome-photos
gnome-tour
cheese # webcam tool
epiphany # web browser
geary # email reader
yelp # Help view
seahorse # password/ssh manager, I use 1Password SSH
gnome-calendar
]) ++ (with pkgs.gnome; [
gnome-music
gnome-characters
tali # poker game
iagno # go game
hitori # sudoku game
atomix # puzzle game
gnome-contacts
gnome-initial-setup
]);

systemPackages = with pkgs.gnomeExtensions; [
dash-to-dock
Expand Down

0 comments on commit c32958f

Please sign in to comment.