task | disable book
This commit is contained in:
parent
b1b1bdc00e
commit
a3e82ec70f
4 changed files with 24 additions and 4 deletions
|
|
@ -31,10 +31,10 @@
|
|||
nixpkgs = import nixpkgs { system = "x86_64-linux"; };
|
||||
specialArgs = { inherit inputs outputs; };
|
||||
};
|
||||
# ace = import ./hosts/ace/colmena.nix;
|
||||
book = import ./hosts/book/colmena.nix;
|
||||
display = import ./hosts/display/colmena.nix;
|
||||
eve = import ./hosts/eve/colmena.nix;
|
||||
# ace = import ./hosts/ace/colmena.nix; # Acer C720
|
||||
# book = import ./hosts/book/colmena.nix; # Google Pixelbook 2017 w/ nvme. Storage dead
|
||||
display = import ./hosts/display/colmena.nix; # Pi4
|
||||
eve = import ./hosts/eve/colmena.nix; # Google Pixelbook 2017 w/ eMMC.
|
||||
fred = import ./hosts/fred/colmena.nix;
|
||||
loki = import ./hosts/loki/colmena.nix;
|
||||
# pocket2 = import ./hosts/pocket2/colmena.nix;
|
||||
|
|
|
|||
|
|
@ -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; };
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -21,6 +21,7 @@
|
|||
games.enable = true;
|
||||
wine.enable = false;
|
||||
tlp.enable = true;
|
||||
gnome-calendar.enable = true;
|
||||
};
|
||||
wm = {
|
||||
sway.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue