nix-config/hosts/lenar/home.nix

13 lines
220 B
Nix

{ config, pkgs, ... }:
{
home.username = "krop";
home.homeDirectory = "/home/krop";
home.stateVersion = "24.05";
krop.hm = {
gnome.enable = true;
programs.git = {
work-config = true;
};
};
}