os/modules/terminal-life/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
1.6 KiB
Nix
Raw Normal View History

{
lib,
config,
pkgs,
...
}:
2021-05-30 19:10:28 +00:00
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;
};
2021-05-30 19:10:28 +00:00
};
config = mkIf cfg.enable {
programs.command-not-found.enable = false;
home-manager = with pkgs;
pkgs.lib.setAttrByPath ["users" psCfg.user.name] {
home.packages = [
ack
2022-01-31 16:34:32 +00:00
asciinema
2021-05-30 19:10:28 +00:00
bat
blesh
2021-05-30 19:10:28 +00:00
exa
fd
2021-05-30 19:10:28 +00:00
gh
glow
jump
(nnn.overrideAttrs (o: {
patches =
(o.patches or [])
++ [
./nnn/0001-feat-use-wasd-keybindings-for-jkli.patch
];
}))
2021-05-30 19:10:28 +00:00
powerline
2023-09-12 20:07:05 +00:00
screen
silver-searcher
2021-05-30 19:10:28 +00:00
watson
];
2023-09-12 20:07:05 +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;
};
programs.bash = import ./bash {
2021-05-30 19:10:28 +00:00
inherit config;
inherit pkgs;
2022-12-26 14:06:47 +00:00
inherit lib;
2021-05-30 19:10:28 +00:00
};
2023-09-12 20:07:05 +00:00
2021-05-30 19:10:28 +00:00
programs.fzf = import ./fzf {
inherit config;
inherit pkgs;
};
2023-09-12 20:07:05 +00:00
programs.neovim = import ./nvim {
inherit config;
inherit pkgs;
2023-06-01 16:11:11 +00:00
inherit lib;
2021-05-30 19:10:28 +00:00
};
2022-11-20 22:28:23 +00:00
};
2023-09-12 20:07:05 +00:00
};
2021-05-30 19:10:28 +00:00
}