This commit is contained in:
strix 2026-08-25 14:00:13 +02:00
parent ed13a64d87
commit d998fe6155
7 changed files with 47 additions and 20 deletions

View file

@ -1,4 +1,4 @@
{ home-manager, inputs, filter, ... }:
{ home-manager, inputs, filter, pkgs, ... }:
{
imports = [
../util/profile-icons.nix
@ -13,17 +13,19 @@
users.users."strix" = {
isNormalUser = true;
icon = "${./common/profile.png}";
icon = "${./profile.png}";
shell = pkgs.zsh;
description = "Strix";
initialPassword = "changeme";
extraGroups = [
"wheel"
"networkmanager"
"libvirtd"
"docker"
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMjsxlXIgj0sPuzjgfeqAfe1gTNAeFpAext2wbfjOLPE"
];
};
}