From 6cd77831b3b10ebe1cb6e5a39733f6e333d319ed Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Mon, 21 Apr 2025 04:06:26 -0400 Subject: [PATCH] Fix flake and default configurations FLAKE path --- home/toph/common/core/default.nix | 2 +- hosts/common/core/default.nix | 2 +- installer/flake.nix | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/home/toph/common/core/default.nix b/home/toph/common/core/default.nix index f0b69d4..eafda22 100644 --- a/home/toph/common/core/default.nix +++ b/home/toph/common/core/default.nix @@ -43,7 +43,7 @@ in ]; sessionVariables = { EDITOR = "micro"; - FLAKE = "${homeDir}/git/dot.nix"; + FLAKE = "${homeDir}/git/Nix/dot.nix"; MANPAGER = "batman"; # see ./cli/bat.nix SHELL = "fish"; TERM = "foot"; diff --git a/hosts/common/core/default.nix b/hosts/common/core/default.nix index 53e1c9a..f6024b2 100644 --- a/hosts/common/core/default.nix +++ b/hosts/common/core/default.nix @@ -57,7 +57,7 @@ enable = true; clean.enable = true; clean.extraArgs = "--keep-since 20d --keep 20"; - flake = "${config.hostSpec.home}/git/dot.nix/"; + flake = "${config.hostSpec.home}/git/Nix/dot.nix/"; }; ## SUDO and Terminal ## diff --git a/installer/flake.nix b/installer/flake.nix index 49f7f6d..6126c65 100644 --- a/installer/flake.nix +++ b/installer/flake.nix @@ -22,7 +22,7 @@ minimalSpecialArgs = { inherit inputs outputs; lib = nixpkgs.lib.extend ( - self: super: { custom = import /home/${username}/git/dot.nix/lib { inherit (nixpkgs) lib; }; } + self: super: { custom = import /home/${username}/git/Nix/dot.nix/lib { inherit (nixpkgs) lib; }; } ); }; @@ -34,7 +34,7 @@ specialArgs = minimalSpecialArgs; modules = [ ./minimal-configuration.nix - /home/${username}/git/dot.nix/hosts/nixos/${name}/hardware.nix + /home/${username}/git/Nix/dot.nix/hosts/nixos/${name}/hardware.nix { networking.hostName = name; } ]; });