pinwheel: Add calibre

This commit is contained in:
Alexander Heldt
2023-08-22 19:44:45 +02:00
parent efdece03b9
commit 3aa31f62c6
2 changed files with 12 additions and 2 deletions

View File

@@ -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" ];

View File

@@ -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;
}