Files
nixos-config/flake.nix

76 lines
1.7 KiB
Nix
Raw Normal View History

2025-09-13 02:38:36 -04:00
{
description = "System Configuration Flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2026-04-04 16:46:30 -04:00
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
2025-09-13 02:38:36 -04:00
nixos-hardware.url = "github:NixOS/nixos-hardware";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-12-21 00:36:01 -05:00
agenix-rekey = {
url = "github:oddlama/agenix-rekey";
inputs.nixpkgs.follows = "nixpkgs";
};
2026-04-04 16:46:30 -04:00
nur = {
url = "github:nix-community/NUR";
2025-09-13 02:38:36 -04:00
inputs.nixpkgs.follows = "nixpkgs";
};
2026-04-04 16:46:30 -04:00
# nvf = {
# url = "github:notashelf/nvf";
# inputs.nixpkgs.follows = "nixpkgs";
# };
2025-11-01 23:05:23 -04:00
stylix = {
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
noctalia = {
url = "github:noctalia-dev/noctalia-shell";
2025-11-01 23:05:23 -04:00
inputs.nixpkgs.follows = "nixpkgs";
};
2025-11-09 14:34:44 -05:00
niri = {
url = "github:sodiboo/niri-flake";
2025-11-16 01:17:54 -05:00
inputs.nixpkgs.follows = "nixpkgs";
};
2026-04-04 16:46:30 -04:00
# zen-browser = {
# url = "github:0xc000022070/zen-browser-flake";
# inputs = {
# # IMPORTANT: To ensure compatibility with the latest Firefox version, use nixpkgs-unstable.
# nixpkgs.follows = "nixpkgs";
# home-manager.follows = "home-manager";
# };
# };
nix-jmu-cs345.url = "github:Eclypsed/nix-jmu-cs345";
2025-10-19 01:55:37 -04:00
2026-04-04 16:46:30 -04:00
packages = {
flake = false;
url = "path:./packages";
2025-10-19 01:55:37 -04:00
};
2026-04-04 16:46:30 -04:00
secrets = {
flake = false;
url = "path:./secrets";
};
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
2025-09-13 02:38:36 -04:00
}