feat(nix): migrate lazydocker

This commit is contained in:
Stefan Imhoff
2024-07-05 16:39:37 +02:00
parent 66f089765c
commit f6de449758
5 changed files with 12 additions and 4 deletions

View File

@@ -7,7 +7,6 @@
- create:
- ~/.config/gh
- ~/.config/gh-dash
- ~/.config/lazydocker
- ~/.config/tmux
- ~/.gnupg
@@ -19,7 +18,6 @@
~/.config/gh-dash/config.yml: github/gh-dash/config.yml
~/.config/gh/config.yml: github/gh/config.yml
~/.config/karabiner: karabiner
~/.config/lazydocker/config.yml: docker/lazydocker.yml
~/.config/lf: lf
~/.config/nvim: nvim
~/.config/oatmeal: oatmeal

View File

@@ -237,8 +237,6 @@ brew "jless"
brew "jpeg", link: true
# Lightweight and flexible command-line JSON processor
brew "jq"
# Lazier way to manage everything docker
brew "lazydocker"
# Terminal file manager
brew "lf"
# Access DVDs as block devices without the decryption

View File

@@ -10,6 +10,7 @@ in
./ag
./bat
./ctags
./lazydocker
./lazygit
./ripgrep
./skhd

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
home.file.".config/lazydocker/config.yml" = {
source = ./lazydocker.yml;
};
home.packages = [
pkgs.lazydocker
];
}