16 lines
453 B
Nix
16 lines
453 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
../../nixos
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
baremetal.enable = true; # Enables baremetal features (nixos/baremetal.nix).
|
|
graphical.enable = true; # Enables graphical features (nixos/graphical.nix).
|
|
|
|
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";
|
|
}
|