mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
fix flakes in host config
This commit is contained in:
parent
65da48fac0
commit
f9af878095
1 changed files with 2 additions and 0 deletions
|
@ -4,6 +4,7 @@ let
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
pkgs.nixosModules.notDetected
|
||||
({ ... }: { config = { sconfig.flakes.enable = true; }; })
|
||||
(./. + "/configuration_${name}.nix")
|
||||
../.
|
||||
];
|
||||
|
@ -13,6 +14,7 @@ let
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
({ modulesPath, ... }: { imports = [ "${modulesPath}/profiles/qemu-guest.nix" ]; })
|
||||
({ ... }: { config = { sconfig.flakes.enable = true; }; })
|
||||
(./. + "/configuration_${name}.nix")
|
||||
../.
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue