nixos/nixos/laptop.nix
2026-04-19 18:18:11 +02:00

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";
}