fix: new syntax
This commit is contained in:
parent
7cfe53e9b8
commit
7d990ceb9b
1 changed files with 5 additions and 8 deletions
|
@ -9,14 +9,11 @@
|
|||
./hardware-config.nix
|
||||
];
|
||||
|
||||
boot.initrd.luks.devices = [
|
||||
{
|
||||
name = "root";
|
||||
device = "/dev/disk/by-uuid/00f32b39-dfcb-4459-bf8e-aa68e2198466";
|
||||
preLVM = true;
|
||||
allowDiscards = true;
|
||||
}
|
||||
];
|
||||
boot.initrd.luks.devices.root = {
|
||||
device = "/dev/disk/by-uuid/00f32b39-dfcb-4459-bf8e-aa68e2198466";
|
||||
preLVM = true;
|
||||
allowDiscards = true;
|
||||
};
|
||||
|
||||
networking.hostName = "alex";
|
||||
networking.firewall.enable = false;
|
||||
|
|
Loading…
Reference in a new issue