mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
15 lines
255 B
Nix
15 lines
255 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./configuration.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
networking.hostName = "bomba";
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
system.stateVersion = "25.05"; # Did you read the comment?
|
|
}
|