mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): migrate lazydocker
This commit is contained in:
@@ -7,7 +7,6 @@
|
|||||||
- create:
|
- create:
|
||||||
- ~/.config/gh
|
- ~/.config/gh
|
||||||
- ~/.config/gh-dash
|
- ~/.config/gh-dash
|
||||||
- ~/.config/lazydocker
|
|
||||||
- ~/.config/tmux
|
- ~/.config/tmux
|
||||||
- ~/.gnupg
|
- ~/.gnupg
|
||||||
|
|
||||||
@@ -19,7 +18,6 @@
|
|||||||
~/.config/gh-dash/config.yml: github/gh-dash/config.yml
|
~/.config/gh-dash/config.yml: github/gh-dash/config.yml
|
||||||
~/.config/gh/config.yml: github/gh/config.yml
|
~/.config/gh/config.yml: github/gh/config.yml
|
||||||
~/.config/karabiner: karabiner
|
~/.config/karabiner: karabiner
|
||||||
~/.config/lazydocker/config.yml: docker/lazydocker.yml
|
|
||||||
~/.config/lf: lf
|
~/.config/lf: lf
|
||||||
~/.config/nvim: nvim
|
~/.config/nvim: nvim
|
||||||
~/.config/oatmeal: oatmeal
|
~/.config/oatmeal: oatmeal
|
||||||
|
|||||||
2
Brewfile
2
Brewfile
@@ -237,8 +237,6 @@ brew "jless"
|
|||||||
brew "jpeg", link: true
|
brew "jpeg", link: true
|
||||||
# Lightweight and flexible command-line JSON processor
|
# Lightweight and flexible command-line JSON processor
|
||||||
brew "jq"
|
brew "jq"
|
||||||
# Lazier way to manage everything docker
|
|
||||||
brew "lazydocker"
|
|
||||||
# Terminal file manager
|
# Terminal file manager
|
||||||
brew "lf"
|
brew "lf"
|
||||||
# Access DVDs as block devices without the decryption
|
# Access DVDs as block devices without the decryption
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ in
|
|||||||
./ag
|
./ag
|
||||||
./bat
|
./bat
|
||||||
./ctags
|
./ctags
|
||||||
|
./lazydocker
|
||||||
./lazygit
|
./lazygit
|
||||||
./ripgrep
|
./ripgrep
|
||||||
./skhd
|
./skhd
|
||||||
|
|||||||
11
nix/home/lazydocker/default.nix
Normal file
11
nix/home/lazydocker/default.nix
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.file.".config/lazydocker/config.yml" = {
|
||||||
|
source = ./lazydocker.yml;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = [
|
||||||
|
pkgs.lazydocker
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user