nix/hosts/laptop/default.nix

14 lines
253 B
Nix
Raw Normal View History

2024-08-13 17:07:26 +02:00
{ inputs, pkgs, ... }:
2024-06-05 20:52:52 +02:00
{
networking.hostName = "laptop";
networking.networkmanager.enable = true;
2024-08-17 17:06:58 +02:00
2024-08-18 10:45:03 +02:00
boot.loader.systemd-boot.enable = true;
2024-08-13 17:07:26 +02:00
2024-06-05 20:52:52 +02:00
imports = [
2024-07-03 16:00:19 +02:00
../../modules
2024-06-05 20:52:52 +02:00
./hardware.nix
inputs.home-manager.nixosModules.default
];
}