nix-config/hosts/PW05CH3L/configuration.nix
Oliver Davies 52821346ba
All checks were successful
/ check (push) Successful in 1m37s
Refactor
2025-07-09 13:37:03 +01:00

31 lines
542 B
Nix

{ inputs, pkgs, ... }:
{
imports = [
inputs.agenix.nixosModules.default
inputs.disko.nixosModules.disko
inputs.nixos-wsl.nixosModules.default
../common
../../users/opdavies.nix
];
features = {
cli = {
docker.enable = true;
password-store.enable = true;
password-store.extensions = with pkgs.passExtensions; [
pass-otp
];
};
};
wsl = {
enable = true;
defaultUser = "opdavies";
};
home-manager.users.opdavies.home.sessionVariables.WAYLAND_DISPLAY = "";
}