aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-22 18:23:58 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-03-22 18:23:58 +0100
commitf8d95e777512e89a77a8ed1378aa3f49af37c0a6 (patch)
tree5993c83e9a9ebedc38b014428f9cbfd293bc6a6e
parent036375275abc5bb60030336091bbd0f12bd03de0 (diff)
Fixed broken configuration import for kronos
-rw-r--r--flake.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index b47f965..6388760 100644
--- a/flake.nix
+++ b/flake.nix
@@ -14,9 +14,7 @@
nixpkgs,
home-manager,
...
- } @ inputs:
- # ← let goes here
- let
+ } @ inputs: let
hmModule = {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
@@ -28,7 +26,7 @@
system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [
- ./configuration.nix
+ ./hosts/kronos/configuration.nix
home-manager.nixosModules.home-manager
hmModule # ← use shared module
];