First commit

This commit is contained in:
2026-03-06 08:06:15 -06:00
commit 93c1b00adc
42 changed files with 2839 additions and 0 deletions

16
flake.nix Normal file
View File

@@ -0,0 +1,16 @@
{
description = "A flake to package/run this quickshell config";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
};
outputs = { ... } @ inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; }
(inputs.import-tree [ ./dev ./config ]);
}