This commit is contained in:
Spectre 2024-06-08 01:06:31 +02:00
parent f59ea55244
commit 9b5197fae4
5 changed files with 258 additions and 1 deletions

View file

@ -4,6 +4,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nixpkgs-stable.url = "github:NixOS/nixpkgs/release-24.05";
flake-utils.url = "github:numtide/flake-utils";
home-manager = {
@ -22,6 +23,12 @@
stylix.url = "github:danth/stylix";
helix.url = "github:pascalkuthe/helix/inline-diagnostics";
arkenfox = {
url = "github:dwarfmaster/arkenfox-nixos";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
};
outputs = {
@ -31,6 +38,7 @@
home-manager,
sops-nix,
stylix,
arkenfox,
...
} @ inputs: let
inherit (nixpkgs) lib;