Fix breakage.

This commit is contained in:
2025-10-20 17:29:26 +01:00
parent a1089a7cac
commit fe51f1ac5b
2 changed files with 80 additions and 78 deletions

View File

@@ -1,5 +1,7 @@
{ pkgs, profile ? "cli", ... }:
{
imports = [ ./programs/${profile}.nix ];
home = {
packages = (import ./packages.nix { inherit pkgs profile; }).packages;
stateVersion = "24.05"; # TODO: unify this with the references in flake.nix:inputs
@@ -42,6 +44,4 @@
allowOther = true;
};
};
programs = import ./programs/${profile}.nix { inherit pkgs; };
}