diff options
Diffstat (limited to 'hosts/bibus-lab')
| -rw-r--r-- | hosts/bibus-lab/configuration.nix | 14 | ||||
| -rw-r--r-- | hosts/bibus-lab/disko.nix | 4 |
2 files changed, 18 insertions, 0 deletions
diff --git a/hosts/bibus-lab/configuration.nix b/hosts/bibus-lab/configuration.nix new file mode 100644 index 0000000..13e1a3b --- /dev/null +++ b/hosts/bibus-lab/configuration.nix @@ -0,0 +1,14 @@ +{ inputs, username, ... }: +{ + system.stateVersion = "26.05"; + + imports = [ + inputs.disko.nixosModules.disko + ./disko.nix + + ../../os/default.nix + ]; + + hardware.facter.reportPath = ./facter.json; + +} diff --git a/hosts/bibus-lab/disko.nix b/hosts/bibus-lab/disko.nix new file mode 100644 index 0000000..0691fc0 --- /dev/null +++ b/hosts/bibus-lab/disko.nix @@ -0,0 +1,4 @@ +{ + disko.devices = { + }; +} |
