15 lines
334 B
Nix
15 lines
334 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
../../nixos/baremetal.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
graphical.enable = true;
|
|
|
|
boot.initrd.luks.devices."luks-374c6259-18c4-462b-9f30-9c9648de00ae".device =
|
|
"/dev/disk/by-uuid/374c6259-18c4-462b-9f30-9c9648de00ae";
|
|
|
|
networking.hostName = "selune";
|
|
system.stateVersion = "25.11";
|
|
}
|