nix/hosts/laptop/default.nix
2024-06-18 17:49:46 +02:00

15 lines
363 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
];
}