DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 11f9bb612083d3de397d2615732021b29f6b6e07 nix-arta/modules/users/skye.nix -rw-r--r-- 349 bytes
11f9bb61Jonni Liljamo waybar: nmtui on network click a day ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
let
  username = "skye";
in {
  flake.modules.nixos.${username} = {config, ...}: {
    sops.secrets."${username}Pwd".neededForUsers = true;

    users.users.${username} = {
      isNormalUser = true;
      extraGroups = ["wheel"];
      home = "/home/${username}";
      hashedPasswordFile = config.sops.secrets."${username}Pwd".path;
    };
  };
}