os/modules/terminal-life/default.nix

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

99 lines
2.3 KiB
Nix
Raw Normal View History

args@{
lib,
config,
pkgs,
flake,
...
}:
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 = {
full = mkOption {
description = ''
2023-10-07 19:11:08 +00:00
Enable a full version, which includes more nvim plugins and lsps.
'';
2023-10-07 19:11:08 +00:00
default = false;
type = types.bool;
};
2021-05-30 19:10:28 +00:00
};
config = {
programs.command-not-found.enable = true;
2021-05-30 19:10:28 +00:00
2024-08-18 22:22:59 +00:00
users.users."${psCfg.user.name}".packages = with pkgs;
[
tealdeer
2024-08-18 22:22:59 +00:00
asciinema
blesh
eza
fd
ripgrep
(nnn.overrideAttrs (o: {
patches =
(o.patches or [])
++ [
./nnn/0001-feat-use-wasd-keybindings-for-jkli.patch
];
}))
p
powerline
screen
watson
jump
bat
2024-08-18 22:22:59 +00:00
]
++ (
if cfg.full
then [
# Nix specific utilities
alejandra
manix
nix-index
nix-tree
nix-inspect
nvd
]
else []
);
home-manager.users."${psCfg.user.name}" = {
programs.less = {
enable = true;
keys = ''
k forw-line
i back-line
K forw-scroll
I back-scroll
'';
};
2021-05-30 19:10:28 +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 flake.self.theme.withHashtag;
};
2023-09-12 20:07:05 +00:00
programs.bash = import ./bash args;
2023-09-12 20:07:05 +00:00
programs.fzf = import ./fzf args;
programs.neovim = import ./nvim args;
# Ensure nvim backup directory gets created
# Workaround for E510: Can't make backup file (add ! to override)
xdg.dataFile."nvim/backup/.keep".text = "";
xdg.dataFile."nvim/json-schemas/.keep".text = "";
xdg.dataFile."nvim/templates/.keep".text = "";
programs.git = import ./git args;
xdg.configFile."git/config".text = import ./.config/git/config.nix args;
xdg.configFile."git/gitmessage".text = import ./.config/git/gitmessage.nix args;
xdg.configFile."git/global_gitignore".text = import ./.config/git/global_gitignore.nix args;
programs.direnv = import ./direnv args;
2023-09-12 20:07:05 +00:00
};
};
2021-05-30 19:10:28 +00:00
}