mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-05-13 13:42:50 +02:00
15 lines
267 B
Nix
15 lines
267 B
Nix
{ ... }: {
|
|
imports = [
|
|
./laptop-hardware-configuration.nix
|
|
./configuration.nix
|
|
];
|
|
|
|
networking = {
|
|
hostName = "scrap";
|
|
};
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|