83 lines
1.7 KiB
Nix
83 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
self,
|
|
...
|
|
}:
|
|
with lib; let
|
|
psCfg = config.pub-solar;
|
|
cfg = config.pub-solar.terminal-life;
|
|
in {
|
|
options.pub-solar.terminal-life = {
|
|
enable = mkEnableOption "Life in black and white";
|
|
|
|
lite = mkOption {
|
|
description = ''
|
|
Enable a lite edition of terminal-life with less modules and a reduced package set.
|
|
'';
|
|
default = false;
|
|
type = types.bool;
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
programs.command-not-found.enable = false;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
screen
|
|
];
|
|
|
|
# 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;
|
|
};
|
|
|
|
home-manager = with pkgs;
|
|
pkgs.lib.setAttrByPath ["users" psCfg.user.name] {
|
|
home.packages = [
|
|
ack
|
|
asciinema
|
|
bat
|
|
blesh
|
|
exa
|
|
fd
|
|
gh
|
|
glow
|
|
jump
|
|
mdbook-multilang
|
|
(nnn.overrideAttrs (o: {
|
|
patches =
|
|
(o.patches or [])
|
|
++ [
|
|
./nnn/0001-feat-use-wasd-keybindings-for-jkli.patch
|
|
];
|
|
}))
|
|
notes
|
|
powerline
|
|
python-wiki-fetch
|
|
silver-searcher
|
|
watson
|
|
tree
|
|
];
|
|
|
|
programs.bash = import ./bash {
|
|
inherit config;
|
|
inherit pkgs;
|
|
inherit self;
|
|
};
|
|
programs.fzf = import ./fzf {
|
|
inherit config;
|
|
inherit pkgs;
|
|
};
|
|
programs.neovim = import ./nvim {
|
|
inherit config;
|
|
inherit pkgs;
|
|
inherit lib;
|
|
};
|
|
};
|
|
};
|
|
}
|