nix/hosts/desktop/default.nix
2024-07-08 13:44:01 +02:00

16 lines
383 B
Nix

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