linux init

This commit is contained in:
Harivansh Rathi 2026-03-22 14:44:00 -04:00
parent 8ed16afd7d
commit 24b16cba14
13 changed files with 338 additions and 209 deletions

View file

@ -0,0 +1,21 @@
{
inputs,
lib,
pkgs,
username,
...
}: let
packageSets = import ../../lib/package-sets.nix {inherit inputs lib pkgs;};
in {
imports = [
../../home/linux.nix
];
targets.genericLinux.enable = true;
home = {
inherit username;
homeDirectory = "/home/${username}";
packages = packageSets.core ++ packageSets.extras;
};
}