NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

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

chore(packages): update package list on both systemwide and home-manager

* add nil to system-side devenv config, nixd on both of them
* add yt-dlp to home-manager
* add twitch-dl + twitch-chat-downloader since TwitchDownloaderCLI isn't
packaged yet on Nixpkgs

+18 -2
+12 -1
shared/home-manager/packages.nix
··· 64 64 ## language servers ## 65 65 # nix language server - https://github.com/oxalica/nil 66 66 nil 67 + nixd 67 68 # https://github.com/alesbrelih/gitlab-ci-ls 68 69 #gitlab-ci-ls 69 70 ··· 80 81 starship 81 82 oh-my-posh 82 83 blesh 84 + 85 + # archival tools 86 + yt-dlp 87 + twitch-dl 88 + twitch-chat-downloader 83 89 ]; 84 90 85 91 programs.bashmount = { ··· 88 94 89 95 programs.bat = { 90 96 enable = true; 91 - extraPackages = with pkgs.bat-extras; [ batdiff batman batgrep batwatch ]; 97 + extraPackages = with pkgs.bat-extras; [ 98 + batdiff 99 + batman 100 + batgrep 101 + batwatch 102 + ]; 92 103 }; 93 104 }
+6 -1
shared/server/devenv.nix
··· 7 7 cachix 8 8 devbox 9 9 nixfmt-rfc-style 10 + nil 11 + nixd 10 12 11 13 # tmux and friendos 12 14 byobu ··· 63 65 # enable direnv integration for shells 64 66 programs.direnv.enable = true; 65 67 66 - system.nixos.tags = [ "containers-and-vms" "devtools"]; 68 + system.nixos.tags = [ 69 + "containers-and-vms" 70 + "devtools" 71 + ]; 67 72 }