25 lines
579 B
Nix
25 lines
579 B
Nix
# /etc/nixos/users.nix
|
|
# Benutzer-Konfiguration
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Benutzer sebastian
|
|
users.users.sebastian = {
|
|
isNormalUser = true;
|
|
description = "Sebastian Fischer";
|
|
extraGroups = [
|
|
"networkmanager"
|
|
"wheel"
|
|
"docker"
|
|
"libvirtd"
|
|
];
|
|
shell = pkgs.zsh;
|
|
|
|
hashedPassword = "$6$CAuppl9g4RL/0BpQ$njjjKs2MFlHRCxlBk.34f2z.wJ3nEOI4xOdOBEds59Adcr3ngJ1lVFpOS0v0pg4/k5pTg0Lgj.88w/RgR2/MS.";
|
|
};
|
|
|
|
# SSH für ssh-askpass (verwendet von Git, etc.)
|
|
programs.ssh.askPassword = "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass";
|
|
}
|