support pipe-operators

This commit is contained in:
do butterflies cry? 2026-01-20 09:24:19 +10:00
parent 88d6c9a19d
commit b41500c42e

View file

@ -31,8 +31,9 @@ in {
nix.settings = { nix.settings = {
experimental-features = [ experimental-features = [
"nix-command"
"flakes" "flakes"
"nix-command"
"pipe-operators"
]; ];
download-buffer-size = 524288000; # 500 MiB download-buffer-size = 524288000; # 500 MiB
}; };
@ -226,9 +227,7 @@ in {
home-manager = { home-manager = {
users.me = import ../../homes/me; users.me = import ../../homes/me;
extraSpecialArgs = {inherit inputs pkgs pkgs-unstable;}; extraSpecialArgs = {inherit inputs pkgs pkgs-unstable;};
sharedModules = [ sharedModules = [];
inputs.ags.homeManagerModules.default
];
}; };
# ---- ENVIRONMENT VARIABLES ---- # ---- ENVIRONMENT VARIABLES ----
@ -354,6 +353,8 @@ in {
viddy # modern `watch` command viddy # modern `watch` command
thefuck thefuck
deploy-rs
tesseract # for my work with Agribit tesseract # for my work with Agribit
# TODO: once upgraded past Nix-24.07 this line won't be necessary (I think) # TODO: once upgraded past Nix-24.07 this line won't be necessary (I think)
@ -389,6 +390,7 @@ in {
# Games # Games
prismlauncher # minecraft prismlauncher # minecraft
pkgs-unstable.olympus
]; ];
# DEBUG: configuring xdg portal here instead? # DEBUG: configuring xdg portal here instead?