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

View File

@@ -1,5 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
programs = {
dircolors = { dircolors = {
enable = true; enable = true;
extraConfig = '' extraConfig = ''
@@ -399,4 +400,5 @@
set -g set-titles on set -g set-titles on
''; '';
}; };
};
} }