replaced flaresolverr chromium pin with nur pkgs

This commit is contained in:
2024-12-04 14:35:12 -06:00
parent 6965e935b6
commit 9edb91fdde
5 changed files with 29 additions and 29 deletions

View File

@@ -3,7 +3,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs-small.url = "github:nixos/nixpkgs?ref=nixos-unstable-small";
nixpkgs-chrome.url = "github:nixos/nixpkgs?rev=05bbf675397d5366259409139039af8077d695ce";
nur.url = "github:nix-community/nur";
ucodenix.url = "github:e-tho/ucodenix";
nix-gaming.url = "github:fufexan/nix-gaming";
hyprland.url = "github:hyprwm/Hyprland";
@@ -30,8 +30,7 @@
useGUI = name == "workstation";
nixpkgsSelect = if useGUI then inputs.nixpkgs else inputs.nixpkgs-small;
pkgs = nixpkgsSelect |> makePkgs;
pkgs-chrome = inputs.nixpkgs-chrome |> makePkgs;
overlayFile = import ./overlay.nix { inherit pkgs pkgs-chrome; };
overlayFile = import ./overlay.nix { inherit pkgs; };
lib = nixpkgsSelect.lib // inputs.home-manager.lib;
in
lib.nixosSystem {
@@ -42,6 +41,7 @@
modules = [
{ nixpkgs.overlays = [ overlayFile ]; }
./hosts/${name}/configuration.nix
inputs.nur.nixosModules.nur
inputs.sops-nix.nixosModules.sops
inputs.nixos-cosmic.nixosModules.default
];