1
0
Fork 0
nixos-config/home/on-my-machine.nix
2019-08-02 05:17:05 +02:00

8 lines
179 B
Nix

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