This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/applications/gnome-common.nix

36 lines
822 B
Nix
Raw Normal View History

2022-02-10 04:12:25 +00:00
{ config, lib, pkgs, ... }:
2022-03-24 22:02:46 +00:00
let
graphical = config.this.graphical;
power = config.this.system.power;
2022-02-10 04:12:25 +00:00
in with lib; {
config = mkIf graphical.enable {
home-manager.users.james = {
2022-03-24 22:02:46 +00:00
home.packages = with pkgs.gnome;
[
cheese
file-roller
gnome-bluetooth
gnome-books
gnome-boxes
gnome-calendar
gnome-characters
gnome-color-manager
2022-03-24 22:10:51 +00:00
gnome-common
2022-03-24 22:02:46 +00:00
gnome-contacts
gnome-control-center
gnome-dictionary
gnome-font-viewer
gnome-keyring
gnome-maps
gnome-music
iagno
libgnome-keyring
nautilus
pomodoro
seahorse
sushi
] ++ optionals (power.enable) [ gnome-power-manager ];
2022-02-10 04:12:25 +00:00
};
};
}