flake/users/guanranwang/nixos.nix

32 lines
858 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
2023-09-19 00:17:43 +00:00
{
users.users."guanranwang" = {
2023-09-19 00:17:43 +00:00
isNormalUser = true;
description = "Guanran Wang";
extraGroups = [ "wheel" "networkmanager" "tss" ]; # tss = access to tpm devices
hashedPasswordFile = config.sops.secrets."hashed-passwd".path;
2023-09-19 00:17:43 +00:00
shell = pkgs.fish;
packages = [];
};
2023-10-09 14:13:21 +00:00
# Flakes.
2023-10-09 14:13:21 +00:00
home-manager.users.guanranwang = import ./home-manager/nixos;
sops = {
2023-10-09 14:13:21 +00:00
defaultSopsFile = ./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;
};
};
2023-09-19 00:17:43 +00:00
}