mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 10:05:17 +00:00
21 lines
355 B
Nix
21 lines
355 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
username,
|
|
...
|
|
}: let
|
|
packageSets = import ../../lib/package-sets.nix {inherit inputs lib pkgs;};
|
|
in {
|
|
imports = [
|
|
../../home/netty.nix
|
|
];
|
|
|
|
targets.genericLinux.enable = true;
|
|
|
|
home = {
|
|
inherit username;
|
|
homeDirectory = "/home/${username}";
|
|
packages = packageSets.core ++ packageSets.extras;
|
|
};
|
|
}
|