dawin/linux

This commit is contained in:
Harivansh Rathi 2026-03-22 14:47:28 -04:00
parent 5cdf8fd873
commit 1e4caa255f
6 changed files with 20 additions and 19 deletions

21
hosts/linux/default.nix Normal file
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;
};
}