nix-config/hosts/lenar/home.nix

14 lines
220 B
Nix
Raw Normal View History

2024-11-11 16:39:11 +01:00
{ config, pkgs, ... }:
{
home.username = "krop";
home.homeDirectory = "/home/krop";
home.stateVersion = "24.05";
2024-11-11 18:45:30 +01:00
krop.hm = {
gnome.enable = true;
programs.git = {
work-config = true;
};
};
2024-11-11 16:39:11 +01:00
}