nix: Pin channel in flake.nix

This commit is contained in:
Alexander Heldt
2023-01-26 15:26:26 +01:00
parent d1d59c9e40
commit aa7e99bfc6
2 changed files with 13 additions and 7 deletions

View File

@@ -1,5 +1,9 @@
{
outputs = { self, nixpkgs }: {
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
};
outputs = inputs@{ self, nixpkgs }: {
nixosConfigurations.sombrero = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [ ./hosts/sombrero/configuration.nix ];