nix-config/hosts/PW05CH3L/configuration.nix
Oliver Davies e27c3d69a7
All checks were successful
/ check (push) Successful in 1m29s
Re-add pass-otp
2025-05-06 14:22:20 +01:00

30 lines
415 B
Nix

{ pkgs, ... }:
{
imports = [
../common
../../users/opdavies.nix
./modules/wiki.nix
];
cli = {
docker.enable = true;
password-store = {
enable = true;
extensions = with pkgs.passExtensions; [
pass-otp
];
};
};
wsl = {
enable = true;
defaultUser = "opdavies";
};
home-manager.users.opdavies.home.sessionVariables.WAYLAND_DISPLAY = "";
}