nix-config/hosts/heimdall/default.nix
Lander Van den Bulcke f0b06f9250
feat: add heimdall
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-09-18 13:40:53 +02:00

39 lines
629 B
Nix

{ pkgs, ... }:
{
imports = [
<nixos-wsl/modules>
../common/global
../common/optional/yubikey-gpg.nix
../common/users/lander
];
wsl = {
enable = true;
defaultUser = "lander";
usbip = {
enable = true;
autoAttach = [ "1-2" ];
snippetIpAddress = "127.0.0.1"; # using mirrored networking
};
};
networking.hostName = "heimdall";
security.pki.certificateFiles = [
./BASF_all.pem
];
environment.systemPackages = with pkgs; [
vim
wget
];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
system.stateVersion = "24.11";
}