Added gnome utils
This commit is contained in:
parent
37ed8ddf85
commit
62c4721d0a
|
@ -1,3 +1,4 @@
|
|||
{ config, pkgs, ... }: {
|
||||
imports = [ ./sway ./emacs.nix ./firefox.nix ./nextcloud.nix ];
|
||||
imports =
|
||||
[ ./sway ./emacs.nix ./gnome-common.nix ./firefox.nix ./nextcloud.nix ];
|
||||
}
|
||||
|
|
22
modules/applications/gnome-common.nix
Normal file
22
modules/applications/gnome-common.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let graphical = config.this.graphical;
|
||||
in with lib; {
|
||||
config = mkIf graphical.enable {
|
||||
home-manager.users.james = {
|
||||
home.packages = with pkgs; [
|
||||
gnome.file-roller
|
||||
gnome.gnome-bluetooth
|
||||
gnome.gnome-calendar
|
||||
gnome.gnome-characters
|
||||
gnome.gnome-color-manager
|
||||
gnome.gnome-contacts
|
||||
gnome.gnome-dictionary
|
||||
gnome.gnome-font-viewer
|
||||
gnome.gnome-keyring
|
||||
gnome.gnome-maps
|
||||
gnome.libgnome-keyring
|
||||
gnome.nautilus
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user