Files
dotfiles/config/hosts/aspects/doloro-wsl/home.nix
T
2026-05-25 15:12:20 +01:00

32 lines
502 B
Nix

{
den,
modules,
...
}: {
den.aspects.doloro-wsl = {
includes = [
modules.fish
modules.tmux
modules.nix
modules.omp
modules.hyfetch
modules.git
];
nixos = {
config,
pkgs,
...
}: {
users.users.doloro = {
isNormalUser = true;
shell = pkgs.fish;
uid = 1000;
# hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path;
};
};
homeManager = {...}: {
};
};
}