nix/hosts/laptop/default.nix

27 lines
502 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
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
};
grub = {
efiSupport = true;
device = "nodev";
};
};
2024-08-08 15:26:04 +02:00
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
inputs.home-manager.nixosModules.default
];
}