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

35 lines
764 B
Nix
Raw Normal View History

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