Added gnome utils

This commit is contained in:
James Patrick 2022-02-09 23:12:25 -05:00
parent 37ed8ddf85
commit 62c4721d0a
2 changed files with 24 additions and 1 deletions

View File

@ -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 ];
}

View 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
];
};
};
}