Initial commit

dblsaiko
Nov 26, 2023, 1:51 AM
GIEUXXMHNRLH62M2Z4IWRVG4IPPGAPYZ3CNFINTEOKWVQQD64BJAC

Dependencies

Change contents

  • file addition: flake.nix (----------)
    [2.1]
    {
    inputs = {
    nixpkgs.url = "nixpkgs/nixpkgs-unstable";
    };
    outputs = {
    self,
    nixpkgs,
    }: let
    systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
    eachSystem = f: nixpkgs.lib.genAttrs systems (system: f nixpkgs.legacyPackages.${system});
    in {
    formatter = eachSystem (pkgs: pkgs.alejandra);
    };
    }
  • file addition: flake.lock (----------)
    [2.1]
    {
    "nodes": {
    "nixpkgs": {
    "locked": {
    "lastModified": 1700856099,
    "narHash": "sha256-RnEA7iJ36Ay9jI0WwP+/y4zjEhmeN6Cjs9VOFBH7eVQ=",
    "owner": "NixOS",
    "repo": "nixpkgs",
    "rev": "0bd59c54ef06bc34eca01e37d689f5e46b3fe2f1",
    "type": "github"
    },
    "original": {
    "id": "nixpkgs",
    "ref": "nixpkgs-unstable",
    "type": "indirect"
    }
    },
    "root": {
    "inputs": {
    "nixpkgs": "nixpkgs"
    }
    }
    },
    "root": "root",
    "version": 7
    }
  • file addition: .ignore (----------)
    [2.1]
    .git
    .DS_Store
  • file addition: .editorconfig (----------)
    [2.1]
    root = true
    [*]
    indent_size = 4
    indent_style = space
    [*.nix]
    indent_size = 2
    indent_style = space