My Nix Configuration

[homes] Remove name and home declarations

Changed files
+3 -4
homes
x86_64-linux
pyrox
thehedgehog
-2
homes/x86_64-linux/pyrox/default.nix
···
];
snowfallorg.user = {
enable = true;
-
name = "pyrox";
-
home = "/home/pyrox";
};
py = {
profiles.desktop.enable = true;
+3 -2
homes/x86_64-linux/thehedgehog/default.nix
···
+
{ osConfig, ... }:
{
snowfallorg.user = {
enable = true;
-
name = "thehedgehog";
-
home = "/home/thehedgehog";
};
+
home.stateVersion = osConfig.system.stateVersion;
+
py.profiles.gui.enable = true;
}