diff --git a/hosts/pinwheel/configuration.nix b/hosts/pinwheel/configuration.nix index 34d5fea..8627944 100644 --- a/hosts/pinwheel/configuration.nix +++ b/hosts/pinwheel/configuration.nix @@ -8,12 +8,13 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix + ./modules/light + ./modules/sound ./modules/age ./modules/ssh ./modules/syncthing ./modules/firefox - ./modules/light - ./modules/sound + ./modules/calibre ]; nix.settings.experimental-features = [ "nix-command" "flakes" ]; diff --git a/hosts/pinwheel/modules/calibre/default.nix b/hosts/pinwheel/modules/calibre/default.nix new file mode 100644 index 0000000..2ff8585 --- /dev/null +++ b/hosts/pinwheel/modules/calibre/default.nix @@ -0,0 +1,9 @@ +{ home-manager, pkgs, ... }: +{ + home-manager.users.alex = { + home.packages = [ pkgs.calibre ]; + }; + + # Needed to access mounted e-readers + services.udisks2.enable = true; +}