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

8 lines
167 B
Nix
Raw Normal View History

2019-07-31 21:56:52 +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
};
}