From 4d8de41dafb64a18560a13c6bb3b48180915b391 Mon Sep 17 00:00:00 2001 From: alisceon Date: Sat, 4 Apr 2026 18:59:48 +0200 Subject: [PATCH] yeet the shim, now its just a waiting game i guess --- flake.lock | 12 ++++++------ flake.nix | 1 - .../compat/stylix-display-manager-generic.nix | 13 ------------- 3 files changed, 6 insertions(+), 20 deletions(-) delete mode 100644 nixos/modules/compat/stylix-display-manager-generic.nix diff --git a/flake.lock b/flake.lock index 5af6686..33ddbc3 100644 --- a/flake.lock +++ b/flake.lock @@ -338,11 +338,11 @@ ] }, "locked": { - "lastModified": 1775319634, - "narHash": "sha256-7icEIylDWxNSE2QYmybSO9yqi4N/uva1bzCa6ebUHYM=", + "lastModified": 1775321535, + "narHash": "sha256-GC3gqbwvZSUuybzjsr+KrlmDgF0KPWvqG5pjV8UzjUE=", "owner": "nix-community", "repo": "NUR", - "rev": "c5e46e5d4d55b36e49e1ff3ea5252d29b22f5a44", + "rev": "77f938ed32135f6e833f9de7694dd758dd1a976f", "type": "github" }, "original": { @@ -359,11 +359,11 @@ ] }, "locked": { - "lastModified": 1775319634, - "narHash": "sha256-7icEIylDWxNSE2QYmybSO9yqi4N/uva1bzCa6ebUHYM=", + "lastModified": 1775321535, + "narHash": "sha256-GC3gqbwvZSUuybzjsr+KrlmDgF0KPWvqG5pjV8UzjUE=", "owner": "nix-community", "repo": "NUR", - "rev": "c5e46e5d4d55b36e49e1ff3ea5252d29b22f5a44", + "rev": "77f938ed32135f6e833f9de7694dd758dd1a976f", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index fa17a3c..753ed17 100644 --- a/flake.nix +++ b/flake.nix @@ -67,7 +67,6 @@ sharedModules = [ ./nixos/modules/base.nix - ./nixos/modules/compat/stylix-display-manager-generic.nix inputs.stylix.nixosModules.stylix inputs.home-manager.nixosModules.home-manager ({ ... }: { diff --git a/nixos/modules/compat/stylix-display-manager-generic.nix b/nixos/modules/compat/stylix-display-manager-generic.nix deleted file mode 100644 index 09e67cf..0000000 --- a/nixos/modules/compat/stylix-display-manager-generic.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ lib, ... }: -{ - options.services.displayManager.generic.environment = lib.mkOption { - type = lib.types.attrsOf lib.types.anything; - default = { }; - internal = true; - visible = false; - description = '' - Compatibility shim for older Stylix modules that still reference the - removed services.displayManager.generic.environment option. - ''; - }; -}