mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
refactor: make nix code look pretty
This commit is contained in:
parent
890319f222
commit
96573b9481
1 changed files with 5 additions and 3 deletions
|
|
@ -10,9 +10,11 @@
|
||||||
if (host == "desktop") then
|
if (host == "desktop") then
|
||||||
[ ./../home/default.desktop.nix ]
|
[ ./../home/default.desktop.nix ]
|
||||||
else [ ./../home ];
|
else [ ./../home ];
|
||||||
home.username = "${username}";
|
home = {
|
||||||
home.homeDirectory = "/home/${username}";
|
username = "${username}";
|
||||||
home.stateVersion = "22.11";
|
homeDirectory = "/home/${username}";
|
||||||
|
stateVersion = "22.11";
|
||||||
|
};
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue