blob: 32ca3f9e605041bbea39076191b9f3ee07adfb8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
config,
pkgs,
...
}: let
cfg = config.collinux.terminal.shells;
in {
imports = [
./programs/helix.nix
./programs/tmux.nix
./programs/fish.nix
./programs/starship.nix
./programs/lazygit.nix
./programs/cmus.nix
./programs/git.nix
];
programs.command-not-found.enable = false; # broken without nix-channels
users.users."${config.collinux.user.name}" = {
shell = cfg.defaultShell;
ignoreShellProgramCheck = true;
packages = [pkgs.nh]; # Couldn't figure out where else to put this
};
}
|