30 lines
415 B
Nix
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 = "";
|
|
}
|