cleanup old file

This commit is contained in:
Chris Kruining 2025-03-30 21:43:59 +02:00
parent 4d95f45cb6
commit 0fd2177bd0
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
9 changed files with 119 additions and 61 deletions

View file

@ -39,9 +39,9 @@ in {
save_to_clipboard = false;
};
live_config_reload = true;
general.live_config_reload = true;
shell = {
terminal.shell = {
program = "${getExe pkgs.zsh}";
args = ["-l" "-c" "tmux new || tmux"];
};

View file

@ -27,13 +27,14 @@ in
(mkIf cfg.corePkgs.enable {
modules.${user}.shell.toolset = {
bat.enable = true;
btop.enable = true;
eza.enable = true;
fzf.enable = true;
git.enable = true;
starship.enable = true;
tmux.enable = true;
yazi.enable = true;
eza.enable = true;
git.enable = true;
zoxide.enable = true;
};

View file

@ -0,0 +1,22 @@
{ config, lib, pkgs, user, ... }:
let
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
cfg = config.modules.${user}.shell.toolset.bat;
in
{
options.modules.${user}.shell.toolset.bat = {
enable = mkEnableOption "cat replacement";
};
config = mkIf cfg.enable {
home-manager.users.${user} = {
home.packages = with pkgs; [ bat ];
programs.bat = {
enable = true;
};
};
};
}

View file

@ -0,0 +1,8 @@
{ inputs, lib, pkgs, ... }:
{
# imports = [ inputs.erosanix.nixosModules.someModule ];
config = {
};
}

View file

@ -1,5 +1,4 @@
{ config, lib, ... }:
let
{ config, lib, ... }: let
inherit (lib.modules) mkIf;
cfg = config.modules.shell.zsh;