Fix breakage.
This commit is contained in:
@@ -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; };
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user