mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 11:37:44 +00:00
Add bat configuration and some other packages
This commit is contained in:
parent
dbb2ce056e
commit
c09259d4c7
4 changed files with 20 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,6 +2,7 @@
|
|||
|
||||
!machines/
|
||||
!machines/asus/
|
||||
!machines/asus/bat/
|
||||
!machines/asus/discord/
|
||||
!machines/asus/docker/
|
||||
!machines/asus/firefox/
|
||||
|
|
14
machines/asus/bat/default.nix
Normal file
14
machines/asus/bat/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, systemConfiguration, systemPackages, ... }:
|
||||
|
||||
(with pkgs; systemPackages [
|
||||
bat
|
||||
])
|
||||
|
||||
//
|
||||
|
||||
(systemConfiguration {
|
||||
environment.variables = {
|
||||
PAGER = "bat --plain";
|
||||
MANPAGER = "col --spaces --no-backspaces | bat --plain --language man";
|
||||
};
|
||||
})
|
|
@ -13,6 +13,7 @@
|
|||
//
|
||||
|
||||
(imports [
|
||||
./bat
|
||||
./discord
|
||||
./docker
|
||||
./firefox
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
{ pkgs, systemPackages, homePackages, ... }:
|
||||
|
||||
(with pkgs; systemPackages [
|
||||
bat
|
||||
fd
|
||||
fzf
|
||||
htop
|
||||
neofetch
|
||||
ripgrep
|
||||
thefuck
|
||||
tree
|
||||
|
||||
wine
|
||||
|
||||
gcc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue