This commit is contained in:
2024-11-18 12:23:33 +00:00
parent fc1f0f149a
commit 229f27b2f6
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
@ -17,7 +17,7 @@
in {
nixosConfigurations = {
graeme-nix = lib.nixosSystem {
inherit system;
specialArgs = { inherit system; };
modules = [ ./configuration.nix ];
};
};