2023-09-13 15:42:41 +02:00
|
|
|
rec {
|
|
|
|
description = "felschr's NixOS configuration";
|
|
|
|
|
|
|
|
nixConfig = {
|
|
|
|
extra-substituters = [
|
|
|
|
"https://nix-community.cachix.org"
|
|
|
|
"https://wurzelpfropf.cachix.org" # ragenix
|
|
|
|
"https://felschr.cachix.org"
|
|
|
|
];
|
|
|
|
extra-trusted-public-keys = [
|
|
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
|
|
"wurzelpfropf.cachix.org-1:ilZwK5a6wJqVr7Fyrzp4blIEkGK+LJT0QrpWr1qBNq0="
|
|
|
|
"felschr.cachix.org-1:raomy5XA2tsVkBoG6wo70ARIn+V24IXhWaSe3QZo12A="
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-07-22 18:49:30 +02:00
|
|
|
inputs = {
|
2024-05-26 11:49:54 +02:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
2020-09-23 10:36:46 +02:00
|
|
|
|
2024-05-26 11:49:54 +02:00
|
|
|
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
2023-04-09 21:32:37 +02:00
|
|
|
|
2024-05-26 11:49:54 +02:00
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
2023-09-13 14:01:04 +02:00
|
|
|
|
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
|
|
|
|
2024-05-26 11:49:54 +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 = {
|
2024-05-26 11:49:54 +02:00
|
|
|
url = "github:nix-community/home-manager/release-23.11";
|
2023-07-22 18:49:30 +02:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2020-09-23 10:36:46 +02:00
|
|
|
|
2023-09-30 03:31: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 = {
|
2023-08-10 11:43:39 +02:00
|
|
|
url = "github:yaxitech/ragenix";
|
2023-07-22 18:49:30 +02:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2023-08-10 11:43:39 +02:00
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
2023-07-22 18:49:30 +02:00
|
|
|
};
|
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";
|
|
|
|
inputs.nixpkgs-stable.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2023-07-29 21:41:11 +02:00
|
|
|
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";
|
|
|
|
};
|
2022-04-05 19:42:51 +02:00
|
|
|
};
|
|
|
|
|
2023-09-30 16:21:03 +02:00
|
|
|
outputs = { self, nixpkgs, nixpkgs-unstable, ... }@inputs:
|
2023-07-22 18:49:30 +02:00
|
|
|
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
|
|
|
systems = [ "x86_64-linux" "aarch64-linux" ];
|
2024-01-30 20:39:50 +01:00
|
|
|
imports = [
|
|
|
|
./pkgs/flake-module.nix
|
|
|
|
./lib/flake-module.nix
|
|
|
|
./hosts/flake-module.nix
|
|
|
|
./overlays.nix
|
|
|
|
];
|
2023-09-30 16:21:03 +02:00
|
|
|
flake = {
|
|
|
|
inherit nixConfig;
|
2023-07-22 20:33:36 +02:00
|
|
|
|
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;
|
2023-07-22 18:49:30 +02:00
|
|
|
};
|
2020-09-27 14:27:25 +02:00
|
|
|
|
2023-07-22 18:49:30 +02:00
|
|
|
homeManagerModules = {
|
|
|
|
git = import ./home/modules/git.nix;
|
|
|
|
firefox = import ./home/modules/firefox/firefox.nix;
|
|
|
|
tor-browser = import ./home/modules/firefox/tor-browser.nix;
|
2023-09-13 14:01:43 +02:00
|
|
|
mullvad-browser = import ./home/modules/firefox/mullvad-browser.nix;
|
2022-05-05 21:24:46 +02:00
|
|
|
};
|
2023-07-22 18:49:30 +02:00
|
|
|
};
|
2023-07-22 20:33:36 +02:00
|
|
|
perSystem = { system, config, pkgs, ... }: {
|
|
|
|
_module.args.pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
config.allowUnfree = true;
|
|
|
|
};
|
2022-08-03 01:30:46 +02:00
|
|
|
|
2022-05-12 11:01:01 +02:00
|
|
|
devShells.default =
|
2023-07-22 20:33:36 +02:00
|
|
|
pkgs.mkShell { inherit (config.checks.pre-commit) shellHook; };
|
2022-08-08 23:53:33 +02:00
|
|
|
|
2024-01-30 20:39:50 +01:00
|
|
|
checks = {
|
2023-09-30 16:21:03 +02:00
|
|
|
pre-commit = inputs.pre-commit-hooks.lib.${system}.run {
|
2022-08-08 23:53:33 +02:00
|
|
|
src = ./.;
|
|
|
|
hooks = {
|
|
|
|
nixfmt.enable = true;
|
|
|
|
shellcheck.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-07-22 18:49:30 +02:00
|
|
|
|
|
|
|
formatter = pkgs.nixfmt;
|
|
|
|
};
|
|
|
|
};
|
2020-09-23 10:36:46 +02:00
|
|
|
}
|