16 lines
228 B
Nix
16 lines
228 B
Nix
{ pkgs, config, vars, ... }:
|
|
|
|
{
|
|
home = {
|
|
username = "ziro";
|
|
};
|
|
|
|
xdg.configFile = {
|
|
"nix/nix.conf".text =
|
|
''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
};
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|