aboutsummaryrefslogtreecommitdiff
path: root/modules/terminal
diff options
context:
space:
mode:
authorCollin Williams <1234@mail.com>2025-07-08 00:50:21 +0000
committerCollin Williams <1234@mail.com>2025-07-08 00:50:21 +0000
commitccfe06ffcf61daef56cfe0e5d3488dcb5df00bc8 (patch)
treee029a6077cdc09c86ee2be2fd75e7c995e0e8099 /modules/terminal
parenta97c5e2ae338177418de6691dbf1c4e3dd06a7cd (diff)
no more dhall
Diffstat (limited to 'modules/terminal')
-rw-r--r--modules/terminal/options.nix9
-rw-r--r--modules/terminal/system/default.nix1
-rw-r--r--modules/terminal/system/programs/git.nix1
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