This commit is contained in:
2025-08-04 22:32:10 +03:00
parent efbb644bf2
commit 22b0de9ff1
4 changed files with 5 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
{ inputs, ... }@flakeContext:
{
config,
lib,
pkgs,
...
}:
{
home = {
stateVersion = lib.mkDefault "25.05";
homeDirectory = lib.mkDefault "/home/${config.home.username}";
enableNixpkgsReleaseCheck = false;
};
}