31 lines
No EOL
901 B
Nix
31 lines
No EOL
901 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
users.users."guanranwang" = {
|
|
isNormalUser = true;
|
|
description = "Guanran Wang";
|
|
extraGroups = [ "wheel" "networkmanager" "tss" ]; # tss = access to tpm devices
|
|
hashedPasswordFile = config.sops.secrets."hashed-passwd".path;
|
|
shell = pkgs.fish;
|
|
packages = [];
|
|
};
|
|
|
|
|
|
# Flakes.
|
|
home-manager.users.guanranwang = import ../../users/guanranwang/home-manager/nixos;
|
|
|
|
sops = {
|
|
defaultSopsFile = ../../users/guanranwang/secrets/secrets.yaml;
|
|
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
secrets = {
|
|
"clash-config" = {
|
|
#mode = "0444"; # readable
|
|
owner = config.users.users."clash-meta".name;
|
|
group = config.users.users."clash-meta".group;
|
|
restartUnits = [ "clash-meta.service" ];
|
|
path = "/etc/clash-meta/config.yaml";
|
|
};
|
|
"hashed-passwd".neededForUsers = true;
|
|
};
|
|
};
|
|
} |