mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 20:50:47 +03:00
14 lines
195 B
Nix
14 lines
195 B
Nix
{ inputs, ... }@flakeContext:
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
home = {
|
|
stateVersion = lib.mkDefault "25.05";
|
|
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
|
};
|
|
}
|