19 lines
478 B
Nix
19 lines
478 B
Nix
{
|
|
description = "A flake to package/run this quickshell config";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
|
|
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 ]);
|
|
}
|