diff --git a/configurations/calibre.nix b/configurations/calibre.nix new file mode 100644 index 00000000..79bb955d --- /dev/null +++ b/configurations/calibre.nix @@ -0,0 +1,11 @@ +{ ... }: + +{ + custom.zfs.homeLinks = [ + { path = ".config/calibre"; type = "cache"; } + ]; + + home-manager.users.charlotte = { pkgs, ... }: { + home.packages = [ pkgs.calibre ]; + }; +} diff --git a/profiles/graphical.nix b/profiles/graphical.nix index 1bb0a789..c92fcd3f 100644 --- a/profiles/graphical.nix +++ b/profiles/graphical.nix @@ -3,6 +3,7 @@ { imports = [ ../configurations/adb.nix + ../configurations/calibre.nix ../configurations/citrix.nix ../configurations/deluge.nix ../configurations/docker.nix