nixos-config/flake.nix

140 lines
3.5 KiB
Nix
Raw Normal View History

rec {
description = "felschr's NixOS configuration";
nixConfig = {
extra-substituters = [
"https://nix-community.cachix.org"
"https://felschr.cachix.org"
];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"felschr.cachix.org-1:raomy5XA2tsVkBoG6wo70ARIn+V24IXhWaSe3QZo12A="
];
};
2023-07-22 18:49:30 +02:00
inputs = {
2025-12-09 22:41:14 +01:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
2020-09-23 10:36:46 +02:00
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
# https://github.com/NixOS/nixpkgs/pull/332296
nixpkgs-otbr.url = "github:NixOS/nixpkgs/?ref=refs/pull/332296/head";
nixos-hardware.url = "github:NixOS/nixos-hardware";
2023-09-13 14:01:04 +02:00
disko = {
url = "github:nix-community/disko/latest";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-07-22 18:49:30 +02:00
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
2020-09-24 12:35:45 +02:00
flake-utils.url = "github:numtide/flake-utils";
2020-09-23 10:36:46 +02:00
2023-07-22 18:49:30 +02:00
home-manager = {
2025-12-09 22:41:14 +01:00
url = "github:nix-community/home-manager/release-25.11";
2023-07-22 18:49:30 +02:00
inputs.nixpkgs.follows = "nixpkgs";
};
2020-09-23 10:36:46 +02:00
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
arkenfox-userjs = {
url = "github:arkenfox/user.js";
flake = false;
};
2022-05-04 03:02:47 +02:00
2023-07-22 18:49:30 +02:00
agenix = {
2024-05-26 17:03:35 +02:00
url = "github:ryantm/agenix";
2023-07-22 18:49:30 +02:00
inputs.nixpkgs.follows = "nixpkgs";
};
2022-05-05 21:24:46 +02:00
2023-07-22 18:49:30 +02:00
deploy-rs = {
url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs";
inputs.utils.follows = "flake-utils";
};
2020-09-24 12:35:45 +02:00
2023-07-22 18:49:30 +02:00
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
matrix-appservices = {
url = "gitlab:coffeetables/nix-matrix-appservices";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-07-22 18:49:30 +02:00
nvim-kitty-navigator = {
url = "github:hermitmaster/nvim-kitty-navigator";
flake = false;
};
2024-01-30 21:44:02 +01:00
openwrt-imagebuilder = {
url = "github:astro/nix-openwrt-imagebuilder";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-06-06 13:14:29 +02:00
seven-modules = {
url = "git+ssh://git@felschr.com:2222/felschr/seven-modules";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2024-05-26 16:45:38 +02:00
outputs =
inputs:
2023-07-22 18:49:30 +02:00
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
2024-05-26 16:45:38 +02:00
systems = [
"x86_64-linux"
"aarch64-linux"
];
imports = [
./pkgs/flake-module.nix
./lib/flake-module.nix
./hosts/flake-module.nix
./home/flake-module.nix
./overlays/flake-module.nix
];
flake = {
inherit nixConfig;
2023-07-22 18:49:30 +02:00
nixosModules = {
flakeDefaults = import ./modules/flakeDefaults.nix;
systemdNotify = import ./modules/systemdNotify.nix;
2023-10-04 19:45:46 +02:00
inadyn = import ./modules/inadyn.nix;
2025-06-06 16:41:08 +02:00
nginx-authelia = import ./modules/nginx-authelia.nix;
2023-07-22 18:49:30 +02:00
};
};
2024-05-26 16:45:38 +02:00
perSystem =
{
system,
config,
pkgs,
...
}:
{
devShells.default = pkgs.mkShell { inherit (config.checks.pre-commit) shellHook; };
2022-08-08 23:53:33 +02:00
2024-05-26 16:45:38 +02:00
checks = {
pre-commit = inputs.pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
nixfmt-rfc-style.enable = true;
2025-05-18 19:50:24 +02:00
shellcheck = {
enable = true;
excludes = [ ".envrc" ];
};
2024-05-26 16:45:38 +02:00
};
2022-08-08 23:53:33 +02:00
};
};
2023-07-22 18:49:30 +02:00
2024-05-26 16:45:38 +02:00
formatter = pkgs.nixfmt-rfc-style;
};
2023-07-22 18:49:30 +02:00
};
2020-09-23 10:36:46 +02:00
}