diff options
Diffstat (limited to 'modules/terminal')
| -rw-r--r-- | modules/terminal/options.nix | 9 | ||||
| -rw-r--r-- | modules/terminal/system/default.nix | 1 | ||||
| -rw-r--r-- | modules/terminal/system/programs/git.nix | 1 |
3 files changed, 3 insertions, 8 deletions
diff --git a/modules/terminal/options.nix b/modules/terminal/options.nix index 9bfcc58..0d3a147 100644 --- a/modules/terminal/options.nix +++ b/modules/terminal/options.nix @@ -34,12 +34,7 @@ in { }; programs = { - # Themed - starship = mkProgramOption "starship prompt"; lazygit.enable = mkEnableOption "lazygit"; - - cmus = mkProgramOption "cmus"; - git = { enable = mkEnableOption "git"; userName = mkOption { @@ -51,6 +46,8 @@ in { }; }; + tmux = mkProgramOption "tmux terminal multiplexer"; + helix = mkProgramOption' "helix text editor" { hardMode = mkOption { type = types.bool; @@ -59,7 +56,7 @@ in { }; }; - tmux = mkProgramOption "tmux terminal multiplexer"; + cmus = mkProgramOption "cmus"; }; }; }; diff --git a/modules/terminal/system/default.nix b/modules/terminal/system/default.nix index b31fe90..9268a1a 100644 --- a/modules/terminal/system/default.nix +++ b/modules/terminal/system/default.nix @@ -1,7 +1,6 @@ { config, pkgs, - my-lib, ... }: let cfg = config.collinux.terminal.shells; diff --git a/modules/terminal/system/programs/git.nix b/modules/terminal/system/programs/git.nix index b7c85bc..8a931d6 100644 --- a/modules/terminal/system/programs/git.nix +++ b/modules/terminal/system/programs/git.nix @@ -1,6 +1,5 @@ { config, - lib, pkgs, ... }: let |
