fix pipe operators

This commit is contained in:
Dea 2026-03-14 12:55:55 -04:00
parent 586e5832ff
commit 0c9baa2e04
2 changed files with 12 additions and 7 deletions

13
flake.lock generated
View file

@ -48,15 +48,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1772852754, "lastModified": 1772502315,
"narHash": "sha256-rYmaW2+zmFXM7Mp+B/fsBkzbAoeApj04F1fSmiS3mXU=", "narHash": "sha256-DHE6jU97GZ+QfUdPi4plZRnXtAvtGubOxqA5sQ4DD9M=",
"owner": "cry128", "owner": "cry128",
"repo": "cerulean", "repo": "cerulean",
"rev": "ef5bc338566670380ceec75eb692697c9e81fb7e", "rev": "9bab917d8cc3b16f3c73b1980fcb55a4b5ce5239",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "cry128", "owner": "cry128",
"ref": "v0.2.4-alpha",
"repo": "cerulean", "repo": "cerulean",
"type": "github" "type": "github"
} }
@ -598,11 +599,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1772495394, "lastModified": 1773096132,
"narHash": "sha256-hmIvE/slLKEFKNEJz27IZ8BKlAaZDcjIHmkZ7GCEjfw=", "narHash": "sha256-M3zEnq9OElB7zqc+mjgPlByPm1O5t2fbUrH3t/Hm5Ag=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "1d9b98a29a45abe9c4d3174bd36de9f28755e3ff", "rev": "d1ff3b1034d5bab5d7d8086a7803c5a5968cd784",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -9,7 +9,7 @@
home-manager-unstable.url = "github:nix-community/home-manager"; home-manager-unstable.url = "github:nix-community/home-manager";
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable"; home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
cerulean.url = "github:cry128/cerulean"; cerulean.url = "github:cry128/cerulean/v0.2.4-alpha";
cerulean.inputs.systems.follows = "systems"; cerulean.inputs.systems.follows = "systems";
cerulean.inputs.nixpkgs.follows = "nixpkgs-unstable"; cerulean.inputs.nixpkgs.follows = "nixpkgs-unstable";
@ -33,6 +33,10 @@
inputs.home-manager.follows = "home-manager-unstable"; inputs.home-manager.follows = "home-manager-unstable";
}; };
}; };
nixConfig = {
extra-experimental-features = "pipe-operators";
};
outputs = {cerulean, ...} @ inputs: outputs = {cerulean, ...} @ inputs:
cerulean.snow.flake inputs ./.; cerulean.snow.flake inputs ./.;