aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-10-23 02:04:51 -0700
committerMark Nipper <nipsy@bitgnome.net>2024-10-23 02:04:51 -0700
commitf95e8c631c1f45249b716c5cf106c891be7d6c24 (patch)
tree7f3774068918b504cd19bfe1a860a5f1245e520d /hosts/common
parentf03eaf57c08a9ee942e84666663458d7b437a408 (diff)
downloadnix-f95e8c631c1f45249b716c5cf106c891be7d6c24.tar
nix-f95e8c631c1f45249b716c5cf106c891be7d6c24.tar.gz
nix-f95e8c631c1f45249b716c5cf106c891be7d6c24.tar.bz2
nix-f95e8c631c1f45249b716c5cf106c891be7d6c24.tar.lz
nix-f95e8c631c1f45249b716c5cf106c891be7d6c24.tar.xz
nix-f95e8c631c1f45249b716c5cf106c891be7d6c24.tar.zst
nix-f95e8c631c1f45249b716c5cf106c891be7d6c24.zip
Migrate to more standard flake template
Diffstat (limited to 'hosts/common')
-rw-r--r--hosts/common/optional/ebooks.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/hosts/common/optional/ebooks.nix b/hosts/common/optional/ebooks.nix
index 23706a2..7eba96c 100644
--- a/hosts/common/optional/ebooks.nix
+++ b/hosts/common/optional/ebooks.nix
@@ -1,8 +1,8 @@
-{ pkgs, pkgs-stable, ... }:
+{ pkgs, ... }:
{
- environment.systemPackages = [
- pkgs.libgourou
- pkgs-stable.calibre
+ environment.systemPackages = with pkgs; [
+ libgourou
+ stable.calibre
];
services.udisks2.enable = true;