From 9705233e6c1d9412c8c4f00502c78580819ed068 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 2 Sep 2025 09:08:51 -0400 Subject: try librewolf and schizofox --- flake.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index a8951e4..801ffa7 100644 --- a/flake.nix +++ b/flake.nix @@ -14,6 +14,11 @@ nvf = { url = "github:notashelf/nvf"; }; + schizofox.url = "github:schizofox/schizofox"; + nur = { + url = "github:nix-community/NUR"; + #inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = { @@ -22,6 +27,8 @@ home-manager, stylix, nvf, + schizofox, + nur, ... } @ inputs: let lib = nixpkgs.lib; @@ -29,6 +36,7 @@ pkgs = import nixpkgs { inherit system; config.allowUnfree = true; + overlays = [nur.overlay]; }; skullNeovim = nvf.lib.neovimConfiguration { inherit pkgs; @@ -41,7 +49,9 @@ nixosConfigurations = { home = lib.nixosSystem { inherit system; - modules = [./configuration.nix]; + modules = [ + ./configuration.nix + ]; specialArgs = { inherit inputs; }; @@ -52,6 +62,7 @@ inherit pkgs; modules = [ stylix.homeModules.stylix + #nur.modules.nixos.default ./home.nix ]; extraSpecialArgs = {inherit inputs skullNeovim;}; -- cgit v1.3.1