Anthony Rodriguez
09a07b15da
Moved every remaining home-manager piece of configuration to its own hm module.
19 lines
353 B
Nix
19 lines
353 B
Nix
{
|
|
lib,
|
|
config,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
config = lib.mkIf osConfig.local.modules.hyprland.enable {
|
|
programs.foot = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
term = "xterm-256color";
|
|
font = "monospace:size=14";
|
|
shell = "${lib.getExe config.programs.fish.package}";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|