Remove unused packages
This commit is contained in:
parent
815ec0f429
commit
ae456f3317
|
@ -3,7 +3,6 @@
|
|||
{
|
||||
features = {
|
||||
cli = {
|
||||
bluetuith.enable = true;
|
||||
direnv.enable = true;
|
||||
tmux-sessionizer.enable = true;
|
||||
};
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
{
|
||||
features = {
|
||||
cli = {
|
||||
bluetuith.enable = true;
|
||||
direnv.enable = true;
|
||||
tmux-sessionizer.enable = true;
|
||||
};
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
{ programs.bat.enable = true; }
|
|
@ -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: {}
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
|
@ -30,15 +30,10 @@
|
|||
;
|
||||
})
|
||||
|
||||
./bat.nix
|
||||
./bin.nix
|
||||
./bluetuith.nix
|
||||
./direnv.nix
|
||||
./fzf.nix
|
||||
./git.nix
|
||||
./htop.nix
|
||||
./lsd.nix
|
||||
./pet.nix
|
||||
./phpactor.nix
|
||||
./ripgrep.nix
|
||||
./starship.nix
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
programs.htop = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
show_cpu_temperature = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
programs.lsd = {
|
||||
enable = true;
|
||||
enableAliases = false;
|
||||
|
||||
settings = {
|
||||
icons.when = "never";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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"
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
|
@ -5,7 +5,6 @@
|
|||
"..." = "cd ../..";
|
||||
"...." = "cd ../../..";
|
||||
"....." = "cd ../../../..";
|
||||
cat = "bat";
|
||||
s = "secrets";
|
||||
secrets = ''doppler --project "$(whoami)" run'';
|
||||
tag = "tag-release";
|
||||
|
|
Loading…
Reference in a new issue