mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34:08 -05:00
19 lines
449 B
Nix
19 lines
449 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.mkIf config.user.dragneel.enable {
|
|
users.users.dragneel = {
|
|
isNormalUser = true;
|
|
hashedPassword = "$y$j9T$QA39xfvBrwChIi7CBsLgn.$jyWUKiP6QGY4rMtFTcBZgw7s1IJdiaIK6ZUwnU3Wmj7";
|
|
group = "wheel";
|
|
extraGroups = ["wheel" "networkmanager" "audio" "plugdev"];
|
|
openssh.authorizedKeys.keyFiles = [
|
|
inputs.nix-secrets.keys.default
|
|
];
|
|
};
|
|
|
|
home-manager.users.dragneel = ./home.nix;
|
|
}
|