nibylandia/nixos/khas/default.nix

26 lines
537 B
Nix

{ config, pkgs, lib, inputs, ... }:
{
networking.hostName = "khas";
deployment.tags = [ "reachable-everywhere" ];
imports = with inputs.self.nixosModules; [
./hardware-configuration.nix
graphical
laptop
secureboot
gaming
];
# boot.kernelParams = [ "nohz_full=1-15" ];
age.secrets.ar-password.file = ../../secrets/khas-ar.age;
users.users.ar.hashedPasswordFile = config.age.secrets.ar-password.path;
virtualisation.docker.enable = true;
networking.firewall.allowedTCPPorts = [ 8000 8080 ];
}