nix/hosts/laptop/default.nix

19 lines
382 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-08 15:26:04 +02:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-08-13 17:07:26 +02:00
environment.systemPackages = with pkgs; [
prismlauncher
];
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
./unfree.nix
2024-06-05 20:52:52 +02:00
inputs.home-manager.nixosModules.default
];
}