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