pub-solar-os/modules/terminal-life/default.nix

56 lines
1.2 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;
# Needed to get zsh completion for system packages (e.g. systemd).
environment.pathsToLink = [ "/share/zsh" ];
2022-01-19 00:13:15 +00:00
environment.shells = with pkgs; [
zsh
];
2021-05-30 19:10:28 +00:00
environment.systemPackages = with pkgs; [
screen
];
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
exa
fd
2021-05-30 19:10:28 +00:00
gh
glow
nnn
2021-05-30 19:10:28 +00:00
powerline
silver-searcher
2021-05-30 19:10:28 +00:00
vifm
watson
];
programs.neovim = import ./nvim { inherit config; inherit pkgs; };
programs.fzf = import ./fzf { inherit config; inherit pkgs; };
programs.zsh = import ./zsh { inherit config; inherit pkgs; inherit self; };
2021-05-30 19:10:28 +00:00
};
};
}