15 lines
245 B
Nix
15 lines
245 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home.username = "krop";
|
|
home.homeDirectory = "/home/krop";
|
|
home.stateVersion = "24.05";
|
|
|
|
krop.hm = {
|
|
desktop.gnome = {
|
|
enable = true;
|
|
};
|
|
programs.git = {
|
|
work-config = true;
|
|
};
|
|
};
|
|
}
|