Some cleanup

This commit is contained in:
Nox Sluijtman 2024-03-09 02:39:58 +01:00
parent f95bad2c2e
commit 4af7e9bad1
2 changed files with 6 additions and 6 deletions

View file

@ -1,13 +1,13 @@
{ description = "Extremely basic flake";
inputs = {
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
flake-utils.url = github:numtide/flake-utils;
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils}:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
packages = rec {
packages = {
default = throw "put derivation information here";
};