diff options
author | Jasper Ras <jras@hostnet.nl> | 2025-02-03 22:07:43 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2025-02-03 22:07:43 +0100 |
commit | 98c8c5ded88e4836f590db298cf53a5ec30eb353 (patch) | |
tree | c5033c7c2acafcdb9e722619d0a11831cb7da621 | |
parent | 574da5b3416e2376c4ffe20a53ddb1dc2c02b6ce (diff) |
move tarrel into new structure
-rw-r--r-- | configuration/tarrel/default.nix (renamed from hosts/tarrel.nix) | 4 | ||||
-rw-r--r-- | configuration/tarrel/hardware-configuration.nix (renamed from hosts/hardware-configuration/tarrel.nix) | 0 | ||||
-rw-r--r-- | flake.nix | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/hosts/tarrel.nix b/configuration/tarrel/default.nix index 71b70af..ca573fa 100644 --- a/hosts/tarrel.nix +++ b/configuration/tarrel/default.nix @@ -1,7 +1,7 @@ { pkgs, inputs, config, ... }: { imports = [ - ./hardware-configuration/tarrel.nix + ./hardware-configuration.nix ]; boot.loader.systemd-boot.enable = true; @@ -67,7 +67,7 @@ home-manager = { useGlobalPkgs = true; useUserPackages = true; - users.jras = import ../home-manager/entrypoints/personal.nix; + users.jras = import ../../home-manager/entrypoints/personal.nix; extraSpecialArgs = { inherit inputs; monitor-names = ["DP-2" "HDMI-A-1"]; }; }; diff --git a/hosts/hardware-configuration/tarrel.nix b/configuration/tarrel/hardware-configuration.nix index 4604fcd..4604fcd 100644 --- a/hosts/hardware-configuration/tarrel.nix +++ b/configuration/tarrel/hardware-configuration.nix @@ -67,12 +67,13 @@ system = "x86_64-linux"; specialArgs = { inherit inputs; }; modules = [ - ./hosts/tarrel.nix { environment.systemPackages = [ agenix.packages."x86_64-linux".default ]; } home-manager.nixosModules.home-manager agenix.nixosModules.default + + ./configuration/tarrel ./config/shared.nix { |