diff options
| author | Andrew <admonty1@protonmail.com> | 2025-09-02 09:08:51 -0400 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-09-02 09:08:51 -0400 |
| commit | 9705233e6c1d9412c8c4f00502c78580819ed068 (patch) | |
| tree | c337ebc96620c396ec8f524ca0d67491b015b796 /flake.nix | |
| parent | tried qute browser (diff) | |
| download | nixos-9705233e6c1d9412c8c4f00502c78580819ed068.tar.gz nixos-9705233e6c1d9412c8c4f00502c78580819ed068.tar.bz2 nixos-9705233e6c1d9412c8c4f00502c78580819ed068.zip | |
try librewolf and schizofox
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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;}; |
