delete homes belonging to deleted system configs

This commit is contained in:
2026-02-04 03:29:52 +01:00
parent 613a9c5540
commit 06a3b10079
3 changed files with 0 additions and 25 deletions

View File

@@ -1,25 +0,0 @@
{ config
, lib
, pkgs
, ...
}:
let
inherit (lib.my-namespace) enabled;
in
{
imports = [
# ../modules.nix
];
my-namespace.home = {
stream-tools = enabled;
# networking = enabled;
# personal-apps = enabled;
# suites.laptop = enabled;
};
home = {
packages = [
pkgs.nil
pkgs.beeper
];
};
}