Compare commits
1 commit
45d0ef262f
...
511243fcbf
Author | SHA1 | Date | |
---|---|---|---|
511243fcbf |
2 changed files with 13 additions and 8 deletions
|
@ -3,7 +3,6 @@
|
|||
./hardware-configuration.nix
|
||||
../../modules/jitsi.nix
|
||||
../../roles
|
||||
../../roles/vm.nix
|
||||
./network.nix
|
||||
];
|
||||
|
||||
|
|
|
@ -1,15 +1,21 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
vm ? true,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
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