summaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2025-02-09 16:53:01 -0600
committerTim Keller <tjkeller.xyz>2025-02-09 16:53:01 -0600
commitfcc3434b1ccaca1c86223d015227858b0a0a2688 (patch)
tree5a5817eabcb77f5be9baac77ad304e6d4cdb97cb /modules/home
parent3bc77c8dae2a5bf06789ae80cc0356d271660d62 (diff)
downloadnixos-fcc3434b1ccaca1c86223d015227858b0a0a2688.tar.xz
nixos-fcc3434b1ccaca1c86223d015227858b0a0a2688.zip
cleanup and small fixes
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/home/default.nix b/modules/home/default.nix
index b44f360..8748fb9 100644
--- a/modules/home/default.nix
+++ b/modules/home/default.nix
@@ -1,12 +1,11 @@
-{ lib, userDetails, ... }: {
+{ lib, userDetails, homeStateVersion, ... }: {
home = {
username = userDetails.username;
homeDirectory = userDetails.home.root;
- stateVersion = "24.05";
+ stateVersion = homeStateVersion;
};
imports = [
- ./alacritty.nix
#./chrome.nix
./firefox.nix
./git.nix
@@ -18,7 +17,6 @@
./wallpapers.nix
];
- alacritty.enable = lib.mkDefault true;
theme.mint.enable = lib.mkDefault true;
wallpapers.enable = lib.mkDefault false;
}