From 27f2604ed41aef189b887cca99a2f61c5e29669c Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Wed, 3 Jun 2026 16:17:33 +0200 Subject: [PATCH] Remove unused lines --- features-nixos/global/nix.nix | 1 - features-nixos/optional/greetd.nix | 18 ------------------ homes/julian/global/default.nix | 10 ---------- 3 files changed, 29 deletions(-) diff --git a/features-nixos/global/nix.nix b/features-nixos/global/nix.nix index 543fc05..755e124 100644 --- a/features-nixos/global/nix.nix +++ b/features-nixos/global/nix.nix @@ -1,7 +1,6 @@ {outputs, ...}: { # Apply overlays nixpkgs = { - # TODO: apply this to hm and nixos without duplicate code overlays = builtins.attrValues outputs.overlays; config = { nvidia.acceptLicense = true; diff --git a/features-nixos/optional/greetd.nix b/features-nixos/optional/greetd.nix index 9b46f35..b8c2eb8 100644 --- a/features-nixos/optional/greetd.nix +++ b/features-nixos/optional/greetd.nix @@ -7,28 +7,10 @@ programs.regreet = { enable = true; - # iconTheme = julianCfg.gtk.iconTheme; - # theme = julianCfg.gtk.theme; - # # font = julianCfg.fontProfiles.regular; # TODO: do - # cursorTheme = { - # inherit (julianCfg.gtk.cursorTheme) name package; - # }; cageArgs = [ "-s" "-m" "last" ]; # multimonitor use last monitor - # settings.background = { - # path = julianCfg.wallpaper; - # fit = "Cover"; - # }; # TODO: fix - - # TODO: setting keyboard language does not work - # settings = { - # env = { - # XKB_DEFAULT_LAYOUT = "de"; - # # XKB_DEFAULT_VARIANT = "altgr-intl"; - # }; - # }; }; } diff --git a/homes/julian/global/default.nix b/homes/julian/global/default.nix index 5e9f2c5..ce53323 100644 --- a/homes/julian/global/default.nix +++ b/homes/julian/global/default.nix @@ -57,14 +57,4 @@ sessionPath = ["$HOME/.local/bin"]; }; - - # TODO: colorscheme - # colorscheme.mode = lib.mkOverride 1499 "dark"; - # specialisation = { - # dark.configuration.colorscheme.mode = lib.mkOverride 1498 "dark"; - # light.configuration.colorscheme.mode = lib.mkOverride 1498 "light"; - # }; - # home.file = { - # ".colorscheme.json".text = builtins.toJSON config.colorscheme; - # }; }