1
0
Fork 0
nixos-config/home-manager/on-my-machine.nix
2019-07-31 22:36:41 +02:00

8 lines
191 B
Nix

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