this repo has no description
1
fork

Configure Feed

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

at main 52 lines 914 B view raw
1{ 2 delib, 3 lib, 4 pkgs, 5 ... 6}: 7delib.module { 8 name = "programs.desktop-cli"; 9 10 options = delib.singleEnableOption true; 11 12 home.ifEnabled.home.packages = with pkgs; [ 13 age-plugin-yubikey 14 alejandra 15 cachix 16 claude-code 17 fastfetch 18 hexyl 19 lazydocker 20 macchina 21 minio-client 22 mix2nix 23 minisign 24 mtr 25 nix-output-monitor 26 opencode 27 pgcli 28 rage 29 systemctl-tui 30 ]; 31 32 nixos.ifEnabled = {myconfig, ...}: { 33 programs.nh = { 34 enable = true; 35 flake = "/etc/nixos"; 36 }; 37 38 environment.systemPackages = with pkgs.gst_all_1; [ 39 gstreamer 40 gst-vaapi 41 gst-libav 42 gst-plugins-good 43 gst-plugins-ugly 44 gst-plugins-bad 45 ]; 46 }; 47 48 darwin.ifEnabled = {myconfig, ...}: { 49 environment.systemPackages = with pkgs; [nh]; 50 environment.variables.NH_FLAKE = "/Users/${myconfig.constants.username}/.config/nix-darwin"; 51 }; 52}