32 lines
502 B
Nix
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 = {...}: {
|
|
};
|
|
};
|
|
}
|