diff --git a/flake.nix b/flake.nix index 2bcb1ea..7f346b3 100644 --- a/flake.nix +++ b/flake.nix @@ -61,7 +61,7 @@ in { nixosConfigurations = { - grimmauld-nixos = (customNixosSystem "x86_64-linux" { + grimmauld-nixos = customNixosSystem "x86_64-linux" { modules = [ (import ./overlays) agenix.nixosModules.default @@ -74,7 +74,7 @@ ./modules/system-packages.nix ./modules/kvm.nix ]; - }); + }; }; }; } diff --git a/overlays/ddc_patch.nix b/overlays/ddc_patch.nix deleted file mode 100644 index 3625ad7..0000000 --- a/overlays/ddc_patch.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ final, prev, ... }: { - ddcci-driver = prev.ddcci-driver.overrideAttrs - (old: { - patches = [ - (prev.fetchpatch { - url = "https://gitlab.com/Sweenu/ddcci-driver-linux/-/commit/7f851f5fb8fbcd7b3a93aaedff90b27124e17a7e.patch"; - hash = "sha256-Y1ktYaJTd9DtT/mwDqtjt/YasW9cVm0wI43wsQhl7Bg="; - }) - ]; - }); -}