47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{
|
|
description = "@teesh3rt's configuration flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
|
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
|
|
import-tree.url = "github:vic/import-tree";
|
|
|
|
home-manager.url = "github:nix-community/home-manager/release-25.11";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
stylix.url = "github:nix-community/stylix/release-25.11";
|
|
stylix.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
lazyvim = {
|
|
url = "github:pfassina/lazyvim-nix";
|
|
};
|
|
|
|
firefox-addons = {
|
|
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
niri-flake.url = "github:sodiboo/niri-flake";
|
|
|
|
noctalia = {
|
|
url = "github:noctalia-dev/noctalia-shell";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
|
|
|
|
sops-nix = {
|
|
url = "github:Mic92/sops-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
copyparty.url = "github:9001/copyparty";
|
|
};
|
|
|
|
outputs = inputs @ {flake-parts, ...}:
|
|
flake-parts.lib.mkFlake {inherit inputs;}
|
|
(inputs.import-tree ./modules);
|
|
}
|