Compare commits
1 commit
b354be1529
...
72823c5e7d
Author | SHA1 | Date | |
---|---|---|---|
72823c5e7d |
1 changed files with 7 additions and 12 deletions
|
@ -1,21 +1,16 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
modulesPath,
|
||||
vm ? true,
|
||||
...
|
||||
}: {
|
||||
imports =
|
||||
[
|
||||
./admins.nix
|
||||
./nix_keys.nix
|
||||
./prometheusNodeExporter.nix
|
||||
../modules/impermanence.nix
|
||||
]
|
||||
++ (
|
||||
if vm
|
||||
then [./vm.nix]
|
||||
else [./hardware.nix]
|
||||
);
|
||||
imports = [
|
||||
./admins.nix
|
||||
./nix_keys.nix
|
||||
./prometheusNodeExporter.nix
|
||||
../modules/impermanence.nix
|
||||
] ++ (if vm then [./vm.nix] else [./hardware.nix]);
|
||||
nix = {
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue