Remove unused packages

This commit is contained in:
Oliver Davies 2024-12-30 18:02:52 +00:00
parent 815ec0f429
commit ae456f3317
9 changed files with 0 additions and 88 deletions

View file

@ -3,7 +3,6 @@
{ {
features = { features = {
cli = { cli = {
bluetuith.enable = true;
direnv.enable = true; direnv.enable = true;
tmux-sessionizer.enable = true; tmux-sessionizer.enable = true;
}; };

View file

@ -3,7 +3,6 @@
{ {
features = { features = {
cli = { cli = {
bluetuith.enable = true;
direnv.enable = true; direnv.enable = true;
tmux-sessionizer.enable = true; tmux-sessionizer.enable = true;
}; };

View file

@ -1 +0,0 @@
{ programs.bat.enable = true; }

View file

@ -1,36 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib;
{
options.features.cli.bluetuith.enable = mkEnableOption "Enable bluetuith";
config = mkIf config.features.cli.bluetuith.enable {
home.packages = with pkgs; [
bluetuith
];
xdg.configFile."bluetuith/bluetuith.conf" = {
text = ''
{
adapter: ""
adapter-states: ""
connect-bdaddr: ""
gsm-apn: ""
gsm-number: ""
keybindings: {
NavigateDown: j
NavigateUp: k
}
receive-dir: ""
theme: {}
}
'';
};
};
}

View file

@ -30,15 +30,10 @@
; ;
}) })
./bat.nix
./bin.nix ./bin.nix
./bluetuith.nix
./direnv.nix ./direnv.nix
./fzf.nix ./fzf.nix
./git.nix ./git.nix
./htop.nix
./lsd.nix
./pet.nix
./phpactor.nix ./phpactor.nix
./ripgrep.nix ./ripgrep.nix
./starship.nix ./starship.nix

View file

@ -1,9 +0,0 @@
{
programs.htop = {
enable = true;
settings = {
show_cpu_temperature = true;
};
};
}

View file

@ -1,10 +0,0 @@
{
programs.lsd = {
enable = true;
enableAliases = false;
settings = {
icons.when = "never";
};
};
}

View file

@ -1,24 +0,0 @@
{
programs.pet = {
enable = true;
snippets = [
{
command = "nix flake lock --update-input <input-name>";
description = "Display a log of a Git repository, showing each commit on its own line.";
output = "";
tag = [ "git" ];
}
{
command = "nix flake lock --update-input opdavies-nvim";
description = "Update a single input within a Nix flake.";
output = "";
tag = [
"nix"
"nix-flake"
];
}
];
};
}

View file

@ -5,7 +5,6 @@
"..." = "cd ../.."; "..." = "cd ../..";
"...." = "cd ../../.."; "...." = "cd ../../..";
"....." = "cd ../../../.."; "....." = "cd ../../../..";
cat = "bat";
s = "secrets"; s = "secrets";
secrets = ''doppler --project "$(whoami)" run''; secrets = ''doppler --project "$(whoami)" run'';
tag = "tag-release"; tag = "tag-release";