nix/hosts/laptop/default.nix

15 lines
363 B
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{ 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
];
}