old
1{myvars, ...}: {
2 # Home Manager needs a bit of information about you and the
3 # paths it should manage.
4 home = {
5 inherit (myvars) username;
6
7 # This value determines the Home Manager release that your
8 # configuration is compatible with. This helps avoid breakage
9 # when a new Home Manager release introduces backwards
10 # incompatible changes.
11 #
12 # You can update Home Manager without changing this value. See
13 # the Home Manager release notes for a list of state version
14 # changes in each release.
15 stateVersion = "25.05";
16 };
17}