2023-12-04 09:57:55 +00:00
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
"${modulesPath}/profiles/minimal.nix"
|
|
|
|
|
2023-12-19 11:23:39 +00:00
|
|
|
(lib.private.mapHomeManagerUser "foo-dogsquared" {
|
2023-12-04 09:57:55 +00:00
|
|
|
extraGroups = [
|
|
|
|
"adbusers"
|
|
|
|
"wheel"
|
|
|
|
"audio"
|
|
|
|
"docker"
|
|
|
|
"podman"
|
|
|
|
"networkmanager"
|
|
|
|
"wireshark"
|
|
|
|
];
|
|
|
|
hashedPassword =
|
|
|
|
"$y$j9T$UFzEKZZZrmbJ05CTY8QAW0$X2RD4m.xswyJlXZC6AlmmuubPaWPQZg/Q1LDgHpXHx1";
|
|
|
|
isNormalUser = true;
|
|
|
|
createHome = true;
|
|
|
|
home = "/home/foo-dogsquared";
|
|
|
|
description = "Gabriel Arazas";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
wsl = {
|
|
|
|
enable = true;
|
|
|
|
defaultUser = "winnow";
|
|
|
|
nativeSystemd = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.bash.loginShellInit = "nixos-wsl-welcome";
|
|
|
|
|
|
|
|
# Setting the development environment mainly for container-related work.
|
|
|
|
profiles.dev.enable = true;
|
2023-12-17 16:11:11 +00:00
|
|
|
profiles.dev.containers.enable = true;
|
2023-12-04 09:57:55 +00:00
|
|
|
}
|