yeet the shim, now its just a waiting game i guess

This commit is contained in:
alisceon 2026-04-04 18:59:48 +02:00
parent 52432082dc
commit 4d8de41daf
3 changed files with 6 additions and 20 deletions

12
flake.lock generated
View file

@ -338,11 +338,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1775319634, "lastModified": 1775321535,
"narHash": "sha256-7icEIylDWxNSE2QYmybSO9yqi4N/uva1bzCa6ebUHYM=", "narHash": "sha256-GC3gqbwvZSUuybzjsr+KrlmDgF0KPWvqG5pjV8UzjUE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "c5e46e5d4d55b36e49e1ff3ea5252d29b22f5a44", "rev": "77f938ed32135f6e833f9de7694dd758dd1a976f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -359,11 +359,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1775319634, "lastModified": 1775321535,
"narHash": "sha256-7icEIylDWxNSE2QYmybSO9yqi4N/uva1bzCa6ebUHYM=", "narHash": "sha256-GC3gqbwvZSUuybzjsr+KrlmDgF0KPWvqG5pjV8UzjUE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "c5e46e5d4d55b36e49e1ff3ea5252d29b22f5a44", "rev": "77f938ed32135f6e833f9de7694dd758dd1a976f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -67,7 +67,6 @@
sharedModules = [ sharedModules = [
./nixos/modules/base.nix ./nixos/modules/base.nix
./nixos/modules/compat/stylix-display-manager-generic.nix
inputs.stylix.nixosModules.stylix inputs.stylix.nixosModules.stylix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
({ ... }: { ({ ... }: {

View file

@ -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.
'';
};
}