mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 22:03:47 +00:00
23 lines
357 B
Nix
23 lines
357 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;
|
|
};
|
|
}
|