My NixOS configuration and dotfiles
0

Configure Feed

Select the types of activity you want to include in your feed.

NixBTW / cli / system.nix
685 B 42 lines
1{ 2 pkgs, 3 jail, 4 ... 5}: 6{ 7 # Very bare bones setup for root, everything else is handled by home-manager 8 programs.zsh.enable = true; 9 programs.gpu-screen-recorder.enable = true; 10 11 environment.systemPackages = [ 12 pkgs.gcc 13 pkgs.vim 14 pkgs.git 15 (jail "wget" pkgs.wget ( 16 c: with c; [ 17 network 18 mount-cwd 19 ] 20 )) 21 (jail "curl" pkgs.curl ( 22 c: with c; [ 23 network 24 mount-cwd 25 ] 26 )) 27 pkgs.btop 28 pkgs.undervolt 29 pkgs.brightnessctl 30 pkgs.coreutils-full 31 pkgs.intel-gpu-tools 32 33 pkgs.fd 34 pkgs.fzf 35 pkgs.bat 36 pkgs.dust 37 pkgs.ripgrep 38 pkgs.tealdeer 39 40 pkgs.gpu-screen-recorder-gtk 41 ]; 42}