This commit is contained in:
Weckyy702
2026-01-12 11:23:10 +01:00
parent 6122cba650
commit 0524def0ad
16 changed files with 154 additions and 41 deletions

24
users/weckyy702/home.nix Normal file
View File

@@ -0,0 +1,24 @@
# home-manager config for weckyy702
{ pkgs, ...}: {
imports = [
../../home-manager/core.nix
#TODO: user programs
];
programs.zsh = {
enable = true;
# For autologin
profileExtra = ''
if [ -z "$WAYLAND_DISPLAY" ] && [ "$XDG_VTNR" = 1]; then
exec uwsm start -S hyprland-uwsm.desktop
fi
'';
};
programs.git.settings = {
name = "Weckyy702";
email = "konstvelt@gmail.com";
};
}