16 lines
451 B
Nix
16 lines
451 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-324ce23c-e630-42a1-8558-184e999053a5".device =
|
|
"/dev/disk/by-uuid/324ce23c-e630-42a1-8558-184e999053a5";
|
|
|
|
networking.hostName = "shar";
|
|
system.stateVersion = "25.11";
|
|
}
|