aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2026-04-05 21:48:12 +0200
committerschererleander <leander@schererleander.de>2026-04-05 21:48:12 +0200
commit222eb7f49a9b326880e6a2c35a5d1ec1c8aa9e83 (patch)
treed9e260bc1e023562bd81656cbb84cce4d5f3dd1b /modules
parent18afbfee5cce9ae9a4555b4abe536d7b036d5582 (diff)
refactor(users): move anki to linux, spicetify to base
Diffstat (limited to 'modules')
-rw-r--r--modules/users/schererleander/hm-base.nix2
-rw-r--r--modules/users/schererleander/hm-darwin.nix4
-rw-r--r--modules/users/schererleander/hm-linux.nix20
3 files changed, 13 insertions, 13 deletions
diff --git a/modules/users/schererleander/hm-base.nix b/modules/users/schererleander/hm-base.nix
index a1d31d5..a7db5ac 100644
--- a/modules/users/schererleander/hm-base.nix
+++ b/modules/users/schererleander/hm-base.nix
@@ -10,7 +10,7 @@
zed
sioyek
opencode
- anki
+ spicetify
];
# Allow search or installation for unfree packages as a user
diff --git a/modules/users/schererleander/hm-darwin.nix b/modules/users/schererleander/hm-darwin.nix
index edf80eb..6cb137a 100644
--- a/modules/users/schererleander/hm-darwin.nix
+++ b/modules/users/schererleander/hm-darwin.nix
@@ -2,8 +2,8 @@
flake.modules.homeManager.schererleander-darwin =
{ inputs, ... }:
{
- imports = [
- inputs.self.modules.homeManager.schererleander-base
+ imports = with inputs.self.modules.homeManager; [
+ schererleander-base
];
};
}
diff --git a/modules/users/schererleander/hm-linux.nix b/modules/users/schererleander/hm-linux.nix
index 5acb11e..6b5e2ea 100644
--- a/modules/users/schererleander/hm-linux.nix
+++ b/modules/users/schererleander/hm-linux.nix
@@ -2,16 +2,16 @@
flake.modules.homeManager.schererleander-linux =
{ inputs, ... }:
{
- imports = [
- inputs.self.modules.homeManager.schererleander-base
- inputs.self.modules.homeManager.sway
- inputs.self.modules.homeManager.firefox
- inputs.self.modules.homeManager.firefox
- inputs.self.modules.homeManager.nixcord
- inputs.self.modules.homeManager.spicetify
- inputs.self.modules.homeManager.jellyfin-mpv-shim
- inputs.self.modules.homeManager.nextcloud-client
- inputs.self.modules.homeManager.vlc
+ imports = with inputs.self.modules.homeManager; [
+ schererleander-base
+ sway
+ firefox
+ firefox
+ nixcord
+ anki
+ jellyfin-mpv-shim
+ nextcloud-client
+ vlc
];
};
}