try if this will work

This commit is contained in:
Osman Faruk Bayram 2024-10-16 23:51:53 +03:00
parent d515b7b31f
commit f20a9e2884

View file

@ -14,16 +14,16 @@
... ...
}: { }: {
nixosConfigurations = { nixosConfigurations = {
revision = self.shortRev or self.dirtyShortRev or self.lastModified or "unknown";
tartarus = nixpkgs.lib.nixosSystem rec { tartarus = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ ./configuration.nix ]; modules = [ ./configuration.nix ];
specialArgs = { specialArgs = {
pkgs-unstable = import nixpkgs-unstable { pkgs-unstable = import nixpkgs-unstable {
inherit system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
}; };
}; };
# revision = self.shortRev or self.dirtyShortRev or self.lastModified or "unknown";
}; };
}; };
}; };