This commit is contained in:
Andrea Ciceri 2022-12-28 17:26:53 +01:00
parent c49c7d0196
commit 021ee17f1b
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
18 changed files with 175 additions and 16 deletions

13
hosts/rock5b/default.nix Normal file
View file

@ -0,0 +1,13 @@
{fleetModules, ...}: {
imports =
[
./hardware-configuration.nix
]
++ fleetModules [
"common"
"ssh"
"ccr"
];
ccr.enable = true;
}

View file

@ -0,0 +1,15 @@
{lib, ...}: {
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXOS_ROOTFS";
fsType = "ext4";
};
};
swapDevices = [];
boot.loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;
};
}