1
0
Fork 0

Fix formatting

This commit is contained in:
Malte Brandy 2021-12-05 05:30:36 +01:00
parent 3c5936c278
commit 4ab5e8e83a
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
2 changed files with 14 additions and 10 deletions

View file

@ -135,12 +135,12 @@ in
];
fluffy = {
default = makeConfig "hera" ([
./roles/on-my-machine.nix
./roles/accounting.nix
./roles/mode-switching.nix
./roles/systemd-exporter.nix
./roles/headless.nix
./roles/state.nix
./roles/on-my-machine.nix
./roles/accounting.nix
./roles/mode-switching.nix
./roles/systemd-exporter.nix
./roles/headless.nix
./roles/state.nix
]);
};
hera = {

View file

@ -8,24 +8,28 @@
boot.kernelModules = [ "kvm-intel" ];
fileSystems."/" =
{ device = "tmpfs";
{
device = "tmpfs";
fsType = "tmpfs";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/C617-5CCC";
{
device = "/dev/disk/by-uuid/C617-5CCC";
fsType = "vfat";
};
fileSystems."/disk" =
{ device = "/dev/disk/by-uuid/9acbc122-e818-49fa-bc2e-de7d9f822d5a";
{
device = "/dev/disk/by-uuid/9acbc122-e818-49fa-bc2e-de7d9f822d5a";
fsType = "btrfs";
};
boot.initrd.luks.devices."crypted-nixos".device = "/dev/disk/by-uuid/020fde09-f651-45a2-9c6a-9b060edf967d";
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/9acbc122-e818-49fa-bc2e-de7d9f822d5a";
{
device = "/dev/disk/by-uuid/9acbc122-e818-49fa-bc2e-de7d9f822d5a";
fsType = "btrfs";
options = [ "subvol=nix" ];
};