feat: initial commit in preparation of what is to come

This commit is contained in:
Kat Inskip 2022-12-01 19:51:54 +01:00
commit d03de5a56e
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 147 additions and 0 deletions

20
flake.nix Normal file
View file

@ -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; };
}