13 lines
220 B
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;
|
|
};
|
|
};
|
|
}
|