made user files
This commit is contained in:
parent
f3ef755042
commit
9418b91b4d
7 changed files with 137 additions and 119 deletions
25
users/eve/default.nix
Normal file
25
users/eve/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
{
|
||||
sops.secrets."passwords/eve" = {
|
||||
neededForUsers = true;
|
||||
# sopsFile = ../secrets.yaml;
|
||||
};
|
||||
|
||||
# Define user accounts
|
||||
users.users.eve = {
|
||||
isNormalUser = true;
|
||||
uid = 1002;
|
||||
description = "Eve";
|
||||
extraGroups = [ "networkmanager" ];
|
||||
|
||||
hashedPasswordFile = config.sops.secrets."passwords/eve".path;
|
||||
|
||||
packages = with pkgs; [
|
||||
firefox
|
||||
bitwarden
|
||||
discord
|
||||
makemkv
|
||||
signal-desktop
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue