forked from natto1784/dotfiles
restructured again
This commit is contained in:
50
satori/pkgs.nix
Normal file
50
satori/pkgs.nix
Normal file
@@ -0,0 +1,50 @@
|
||||
{lib, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
xclip
|
||||
xorg.xkbcomp
|
||||
xorg.xmodmap
|
||||
p7zip
|
||||
git
|
||||
glxinfo
|
||||
sxiv
|
||||
vim
|
||||
wineWowPackages.staging
|
||||
neofetch
|
||||
w3m
|
||||
gnumake
|
||||
pciutils
|
||||
jdk
|
||||
ntfs3g
|
||||
python3
|
||||
htop
|
||||
nodejs
|
||||
wget
|
||||
ripgrep
|
||||
patchelf
|
||||
feh
|
||||
dwm
|
||||
dmenu
|
||||
st
|
||||
kbd
|
||||
];
|
||||
programs = {
|
||||
steam.enable = true;
|
||||
gnupg = {
|
||||
agent = {
|
||||
enableSSHSupport = true;
|
||||
enable = true;
|
||||
pinentryFlavor = "curses";
|
||||
};
|
||||
};
|
||||
fish.enable = true;
|
||||
dconf.enable = true;
|
||||
};
|
||||
nix = {
|
||||
package = pkgs.nixUnstable;
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command ca-references flakes
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user