dregil: Add an account for Anne
This commit is contained in:
parent
53b6e8d5b4
commit
331b588908
2 changed files with 20 additions and 0 deletions
18
home/anne/default.nix
Normal file
18
home/anne/default.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
users.users.anne = {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = [ "input" ];
|
||||||
|
description = "Anne Kobjolke";
|
||||||
|
home = "/home/anne";
|
||||||
|
hashedPassword =
|
||||||
|
"$6$Lq3kAyI7Oh3uvf9T$lxE1V9adw1lqjRT0tvCdj17zUz.nJkqkMSA8Y6ipuBIHoZqJKJcQPLby/BWdDvzcmCbyEOtA7grToclNnbV49/";
|
||||||
|
};
|
||||||
|
|
||||||
|
home = {
|
||||||
|
language.base = "de_DE@UTF-8";
|
||||||
|
packages = with pkgs; [ firefox alacritty ];
|
||||||
|
keyboard.type = "de";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -15,5 +15,7 @@ in nixosSystem {
|
||||||
../../modules/security.nix
|
../../modules/security.nix
|
||||||
../../modules/common-system.nix
|
../../modules/common-system.nix
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
|
inputs.home-manager-unstable.nixosModules.home-manager
|
||||||
|
../../home/anne
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue