mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: migrate even more programs to home-manager
This commit is contained in:
parent
6da14a91ef
commit
cb48688691
1 changed files with 10 additions and 3 deletions
13
home.nix
13
home.nix
|
@ -30,8 +30,7 @@
|
|||
p7zip
|
||||
|
||||
# utils
|
||||
ripgrep # recursively searches directories for a regex pattern
|
||||
bat # replacement for cat
|
||||
nurl # helps fetch git data for nixpkgs
|
||||
|
||||
# nix related
|
||||
#
|
||||
|
@ -43,6 +42,7 @@
|
|||
pciutils # lspci
|
||||
usbutils # lsusb
|
||||
|
||||
|
||||
# desktop utils
|
||||
wl-clipboard
|
||||
grim
|
||||
|
@ -71,7 +71,6 @@
|
|||
libsForQt5.qt5ct
|
||||
papirus-icon-theme
|
||||
libsForQt5.qt5ct
|
||||
|
||||
];
|
||||
|
||||
services.dunst = {
|
||||
|
@ -120,6 +119,14 @@
|
|||
};
|
||||
};
|
||||
|
||||
programs.bat.enable = true;
|
||||
programs.bat.catppuccin = {
|
||||
enable = true;
|
||||
flavor = "macchiato";
|
||||
};
|
||||
|
||||
programs.ripgrep.enable = true;
|
||||
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
theme = "Tokyo Night";
|
||||
|
|
Loading…
Reference in a new issue