nix-config/hosts/PW05CH3L/configuration.nix
2025-05-06 20:05:51 +01:00

28 lines
391 B
Nix

{ pkgs, ... }:
{
imports = [
../common
../../users/opdavies.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 = "";
}