why does nixos require me to commit before rebuilding........

This commit is contained in:
maxstrb 2026-03-14 22:42:57 +01:00
parent 260eed30e3
commit 01b2970436
4 changed files with 38 additions and 22 deletions

View file

@ -0,0 +1,12 @@
{
pkgs,
config,
lib,
...
}: {
config = lib.mkIf config.myModules.games.enable {
home.packages = with pkgs; [
heroic
];
};
}