os/modules/terminal-life/default.nix

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

74 lines
1.5 KiB
Nix
Raw Normal View History

{
lib,
config,
pkgs,
self,
...
}:
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;
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;
};
2021-05-30 19:10:28 +00:00
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
2021-05-30 19:10:28 +00:00
powerline
silver-searcher
2021-05-30 19:10:28 +00:00
vifm
watson
];
programs.bash = import ./bash {
2021-05-30 19:10:28 +00:00
inherit config;
inherit pkgs;
inherit self;
2021-05-30 19:10:28 +00:00
};
programs.fzf = import ./fzf {
inherit config;
inherit pkgs;
};
programs.neovim = import ./nvim {
inherit config;
inherit pkgs;
inherit lib;
2021-05-30 19:10:28 +00:00
};
2022-11-20 22:28:23 +00:00
};
2021-05-30 19:10:28 +00:00
};
}