From d03de5a56e71be7dfb0fb34701bbc7a281696c20 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Thu, 1 Dec 2022 19:51:54 +0100 Subject: [PATCH] feat: initial commit in preparation of what is to come --- .envrc | 0 README.md | 1 + default.nix | 2 + flake.lock | 124 ++++++++++++++++++++++++++++++++++++++++++++++++++++ flake.nix | 20 +++++++++ 5 files changed, 147 insertions(+) create mode 100644 .envrc create mode 100644 README.md create mode 100644 default.nix create mode 100644 flake.lock create mode 100644 flake.nix diff --git a/.envrc b/.envrc new file mode 100644 index 00000000..e69de29b diff --git a/README.md b/README.md new file mode 100644 index 00000000..b0663195 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# kittywitch diff --git a/default.nix b/default.nix new file mode 100644 index 00000000..e1c41ca5 --- /dev/null +++ b/default.nix @@ -0,0 +1,2 @@ +{ inputs }: { +} diff --git a/flake.lock b/flake.lock new file mode 100644 index 00000000..7ba75ae7 --- /dev/null +++ b/flake.lock @@ -0,0 +1,124 @@ +{ + "nodes": { + "flake-utils": { + "locked": { + "lastModified": 1667395993, + "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "home-manager": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ], + "utils": "utils" + }, + "locked": { + "lastModified": 1669825171, + "narHash": "sha256-HxlZHSiRGXnWAFbIJMeujqBe2KgACYx5XDRY0EA9P+4=", + "owner": "nix-community", + "repo": "home-manager", + "rev": "478610aa37c8339eacabfa03f07dacf5574edd47", + "type": "github" + }, + "original": { + "owner": "nix-community", + "ref": "master", + "repo": "home-manager", + "type": "github" + } + }, + "nix-darwin": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1668784520, + "narHash": "sha256-gGgVAMwYPPmrfnvnoRi6OkEB5KRsNTb9uYzEceLdO/g=", + "owner": "lnl7", + "repo": "nix-darwin", + "rev": "6349b99bc2b96ded34d068a88c7c5ced406b7f7f", + "type": "github" + }, + "original": { + "owner": "lnl7", + "ref": "master", + "repo": "nix-darwin", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1669791787, + "narHash": "sha256-KBfoA2fOI5+wCrm7PR+j7jHqXeTkVRPQ0m5fcKchyuU=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "e76c78d20685a043d23f5f9e0ccd2203997f1fb1", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils", + "home-manager": "home-manager", + "nix-darwin": "nix-darwin", + "nixpkgs": "nixpkgs", + "tree": "tree" + } + }, + "tree": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1669922156, + "narHash": "sha256-KT3ztF5pG66tK/Abm9bmQW7ZXiG5SCP2hKDG8LoqOsQ=", + "owner": "kittywitch", + "repo": "tree", + "rev": "0b70e9abe81005a39351ff7341d4adb5b37bc6fe", + "type": "github" + }, + "original": { + "owner": "kittywitch", + "repo": "tree", + "type": "github" + } + }, + "utils": { + "locked": { + "lastModified": 1667395993, + "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 00000000..a898021d --- /dev/null +++ b/flake.nix @@ -0,0 +1,20 @@ +{ + description = "kat's personal system flakes"; + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + home-manager = { + url = "github:nix-community/home-manager/master"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + nix-darwin = { + url = "github:lnl7/nix-darwin/master"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + flake-utils.url = "github:numtide/flake-utils"; + tree = { + url = "github:kittywitch/tree"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + }; + outputs = { ... }@inputs: import ./default.nix { inherit inputs; }; +}