2023-01-28 20:49:10 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
self,
|
2023-02-24 16:56:17 +00:00
|
|
|
inputs,
|
2023-01-28 20:49:10 +00:00
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
2021-05-30 19:10:28 +00:00
|
|
|
psCfg = config.pub-solar;
|
|
|
|
cfg = config.pub-solar.terminal-life;
|
2023-01-28 20:49:10 +00:00
|
|
|
in {
|
2021-05-30 19:10:28 +00:00
|
|
|
options.pub-solar.terminal-life = {
|
|
|
|
enable = mkEnableOption "Life in black and white";
|
2022-08-14 15:17:35 +00:00
|
|
|
|
|
|
|
lite = mkOption {
|
|
|
|
description = ''
|
|
|
|
Enable a lite edition of terminal-life with less modules and a reduced package set.
|
|
|
|
'';
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
};
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.command-not-found.enable = false;
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
screen
|
|
|
|
];
|
|
|
|
|
2023-01-28 21:05:02 +00:00
|
|
|
# Starship is a fast and featureful shell prompt
|
|
|
|
# starship.toml has sane defaults that can be changed there
|
|
|
|
programs.starship = {
|
|
|
|
enable = true;
|
|
|
|
settings = import ./starship.toml.nix;
|
|
|
|
};
|
|
|
|
|
2023-01-28 20:49:10 +00:00
|
|
|
home-manager = with pkgs;
|
|
|
|
pkgs.lib.setAttrByPath ["users" psCfg.user.name] {
|
|
|
|
home.packages = [
|
|
|
|
ack
|
|
|
|
asciinema
|
|
|
|
bat
|
2023-01-28 21:05:02 +00:00
|
|
|
blesh
|
2023-01-28 20:49:10 +00:00
|
|
|
exa
|
|
|
|
fd
|
|
|
|
gh
|
|
|
|
glow
|
2023-01-28 21:05:02 +00:00
|
|
|
jump
|
2023-01-28 20:49:10 +00:00
|
|
|
mdbook-multilang
|
|
|
|
nnn
|
|
|
|
notes
|
|
|
|
powerline
|
|
|
|
python-wiki-fetch
|
|
|
|
silver-searcher
|
|
|
|
vifm
|
|
|
|
watson
|
2023-03-14 13:27:32 +00:00
|
|
|
tree
|
2023-01-28 20:49:10 +00:00
|
|
|
];
|
2021-05-30 19:10:28 +00:00
|
|
|
|
2023-01-28 21:05:02 +00:00
|
|
|
programs.bash = import ./bash {
|
2023-01-28 20:49:10 +00:00
|
|
|
inherit config;
|
|
|
|
inherit pkgs;
|
2023-01-28 21:05:02 +00:00
|
|
|
inherit self;
|
2023-02-24 16:56:17 +00:00
|
|
|
inherit inputs;
|
2023-01-28 20:49:10 +00:00
|
|
|
};
|
|
|
|
programs.fzf = import ./fzf {
|
|
|
|
inherit config;
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
2023-01-28 21:05:02 +00:00
|
|
|
programs.neovim = import ./nvim {
|
2023-01-28 20:49:10 +00:00
|
|
|
inherit config;
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
|
|
|
};
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
}
|