Skip to content

Commit

Permalink
refactor: mv modules out of systems/
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Feb 24, 2024
1 parent 28eefd8 commit a8bc4a1
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion systems/darwin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
imports = [
flake.inputs.self.darwinModules.default
./darwin/ci.nix
../nix-darwin/ci.nix
];

nixpkgs.hostPlatform = "aarch64-darwin";
Expand Down
4 changes: 2 additions & 2 deletions systems/hetzner/ax41.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
flake.inputs.self.nixosModules.default # Defined in nixos/default.nix
flake.inputs.sops-nix.nixosModules.sops
flake.inputs.disko.nixosModules.disko
./nixos-container.nix
../../nixos/nixos-container.nix
../../nixos/server/harden
];
system.stateVersion = "23.11";
Expand Down Expand Up @@ -50,7 +50,7 @@
defaultGateway = "65.109.35.129"; # `ip route | grep default`
nameservers = [ "8.8.8.8" ];
};
disko.devices = import ../disko/two-raids-on-two-disks.nix {
disko.devices = import ../../nixos/disko/two-raids-on-two-disks.nix {
inherit lib;
};
}
2 changes: 1 addition & 1 deletion systems/linux-builder.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
MAILADDR [email protected]
'';
};
disko.devices = import ./disko/trivial.nix { device = "/dev/sda"; };
disko.devices = import ../nixos/disko/trivial.nix { device = "/dev/sda"; };
networking = {
hostName = "linux-builder";
networkmanager.enable = true;
Expand Down

0 comments on commit a8bc4a1

Please sign in to comment.