flake init

This commit is contained in:
blahai 2025-01-22 18:32:12 +02:00
parent 8473c02497
commit 10708ce6f1
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
3 changed files with 61 additions and 1 deletions

2
.gitignore vendored
View file

@ -2,4 +2,4 @@
# Ignore build outputs from performing a nix-build or `nix build` command
result
result-*
.direnv/

27
flake.lock generated Normal file
View file

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1737469691,
"narHash": "sha256-nmKOgAU48S41dTPIXAq0AHZSehWUn6ZPrUKijHAMmIk=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "9e4d5190a9482a1fb9d18adf0bdb83c6e506eaab",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

33
flake.nix Normal file
View file

@ -0,0 +1,33 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = {
self,
nixpkgs,
...
}: let
inherit (nixpkgs) lib;
forAllSystems = fn:
lib.genAttrs lib.systems.flakeExposed (
system:
fn (
import nixpkgs {
inherit system;
config.allowUnfree = true;
}
)
);
in {
formatter = forAllSystems (pkgs: pkgs.alejandra);
overlays.default = _: prev: self.packages.${prev.stdenv.hostPlatform.system} or {};
};
nixConfig = {
extra-substituters = ["https://blahai.cachix.org"];
extra-trusted-public-keys = [
"blahai.cachix.org-1:7Pg+JDWpcIogeN3HesRnOb4dl6FSwl/ZHC+QUmb65So="
];
};
}