nix/hosts/laptop/default.nix
2024-06-05 20:52:52 +02:00

16 lines
364 B
Nix

{ config, lib, pkgs, modulesPath, inputs, ... }:
{
networking.hostName = "laptop";
networking.networkmanager.enable = true;
hardware.nvidia.nvidiaSettings = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
imports = [
../../modules
./hardware.nix
inputs.home-manager.nixosModules.default
];
}