17 lines
268 B
Nix
17 lines
268 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
networking.hostName = "laptop";
|
|
networking.networkmanager.enable = true;
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
imports = [
|
|
../../modules
|
|
./hardware.nix
|
|
./led.nix
|
|
inputs.home-manager.nixosModules.default
|
|
];
|
|
}
|