1
0
Fork 0
nixos-config/home-manager/roles/on-my-machine.nix

13 lines
175 B
Nix
Raw Normal View History

2022-03-08 01:42:46 +00:00
{
pkgs,
config,
lib,
...
}: {
2019-07-26 13:54:30 +00:00
home = {
username = "maralorn";
2019-07-28 19:59:12 +00:00
homeDirectory = "/home/maralorn";
2020-05-27 13:20:08 +00:00
packages = builtins.attrValues pkgs.my-home-pkgs;
2019-07-25 21:35:59 +00:00
};
}