feat(ymir): enable user secrets.
This commit is contained in:
parent
f9ac37dd98
commit
6110d26c39
1 changed files with 6 additions and 3 deletions
|
@ -108,17 +108,20 @@
|
||||||
users.users.crony = {
|
users.users.crony = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Crony";
|
description = "Crony";
|
||||||
# hashedPasswordFile = "${config.age.secrets.crony-passwd.path}";
|
hashedPasswordFile = "${config.age.secrets.crony-passwd.path}";
|
||||||
extraGroups = ["networkmanager" "wheel" "video" "input" "audio" "gamemode" "seat"];
|
extraGroups = ["networkmanager" "wheel" "video" "input" "audio" "gamemode" "seat"];
|
||||||
};
|
};
|
||||||
|
|
||||||
# users.users.root.hashedPasswordFile = "${config.age.secrets.root-passwd.path}";
|
users.users.root.hashedPasswordFile = "${config.age.secrets.root-passwd.path}";
|
||||||
|
|
||||||
# users.mutableUsers = false;
|
users.mutableUsers = false;
|
||||||
|
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
# Enable my flake specific settings
|
||||||
|
crony.secrets.enable = true;
|
||||||
|
|
||||||
# List packages installed in system profile
|
# List packages installed in system profile
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
neovim
|
neovim
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue