moved nixos to a dir

This commit is contained in:
Vivian 2021-11-21 13:34:39 +01:00
parent 996caabc8a
commit 68822bcbfa
18 changed files with 1 additions and 1 deletions

View file

@ -17,7 +17,7 @@
mkSystem = { host, lxc ? true }:
nixpkgs.lib.nixosSystem {
inherit system;
modules = [ ./hosts/${host}/configuration.nix ./common.nix ] ++ (if lxc then
modules = [ ./nixos/hosts/${host}/configuration.nix ./nixos/common.nix ] ++ (if lxc then
[ "${nixpkgs}/nixos/modules/virtualisation/lxc-container.nix" ]
else
[ ]);