task | disable book
This commit is contained in:
parent
b1b1bdc00e
commit
a3e82ec70f
4 changed files with 24 additions and 4 deletions
|
|
@ -16,6 +16,7 @@ in {
|
|||
./services.nix
|
||||
./sway.nix
|
||||
./terminals.nix
|
||||
./gnome-calenar.nix
|
||||
];
|
||||
fonts = { fontconfig = { enable = true; }; };
|
||||
nixpkgs.overlays = [
|
||||
|
|
|
|||
18
home/gui/gnome-calenar.nix
Normal file
18
home/gui/gnome-calenar.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ lib, config, pkgs, inputs, outputs, home-manager, ... }:
|
||||
with lib;
|
||||
let cfg = config.roles.gnome-calendar;
|
||||
in {
|
||||
options.roles.gnome-calendar = {
|
||||
enable = lib.mkEnableOption "gnome calendar";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
home-manager.users.don.home.packages = with pkgs; [ gnome-calendar ];
|
||||
services = {
|
||||
gnome = {
|
||||
evolution-data-server = { enable = true; };
|
||||
gnome-online-accounts = { enable = true; };
|
||||
gnome-keyring = { enable = true; };
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue