1
0
Fork 0
nixos-config/home-manager/roles/on-my-machine.nix
Malte Brandy 57123b08e1 Reformat
2022-03-08 02:42:46 +01:00

13 lines
175 B
Nix

{
pkgs,
config,
lib,
...
}: {
home = {
username = "maralorn";
homeDirectory = "/home/maralorn";
packages = builtins.attrValues pkgs.my-home-pkgs;
};
}