Commit 0c61239

HPCesia <me@hpcesia.com>
2026-03-20 15:09:05
refactor: rename de-discrete to de-custom
1 parent 8b8bd23
modules/desktop/de/discrete/shell/noctalia/keybindings/niri.nix → modules/desktop/de/custom/shell/noctalia/keybindings/niri.nix
File renamed without changes
modules/desktop/de/discrete/shell/noctalia/bar.nix → modules/desktop/de/custom/shell/noctalia/bar.nix
File renamed without changes
modules/desktop/de/discrete/shell/noctalia/colors.nix → modules/desktop/de/custom/shell/noctalia/colors.nix
File renamed without changes
modules/desktop/de/discrete/shell/noctalia/control-center.nix → modules/desktop/de/custom/shell/noctalia/control-center.nix
File renamed without changes
modules/desktop/de/discrete/shell/noctalia/default.nix → modules/desktop/de/custom/shell/noctalia/default.nix
File renamed without changes
modules/desktop/de/discrete/shell/noctalia/dock.nix → modules/desktop/de/custom/shell/noctalia/dock.nix
File renamed without changes
modules/desktop/de/discrete/shell/noctalia/idle.nix → modules/desktop/de/custom/shell/noctalia/idle.nix
File renamed without changes
modules/desktop/de/discrete/shell/noctalia/plugins.nix → modules/desktop/de/custom/shell/noctalia/plugins.nix
File renamed without changes
modules/desktop/de/discrete/shell/defualt.nix → modules/desktop/de/custom/shell/defualt.nix
File renamed without changes
modules/desktop/de/discrete/wm/niri/default.nix → modules/desktop/de/custom/wm/niri/default.nix
File renamed without changes
modules/desktop/de/discrete/wm/niri/idle.nix → modules/desktop/de/custom/wm/niri/idle.nix
File renamed without changes
modules/desktop/de/discrete/wm/niri/keybinding.nix → modules/desktop/de/custom/wm/niri/keybinding.nix
File renamed without changes
modules/desktop/de/discrete/wm/niri/layer-rules.nix → modules/desktop/de/custom/wm/niri/layer-rules.nix
File renamed without changes
modules/desktop/de/discrete/wm/niri/layout.nix → modules/desktop/de/custom/wm/niri/layout.nix
File renamed without changes
modules/desktop/de/discrete/wm/niri/recent-windows.nix → modules/desktop/de/custom/wm/niri/recent-windows.nix
File renamed without changes
modules/desktop/de/discrete/wm/niri/window-rules.nix → modules/desktop/de/custom/wm/niri/window-rules.nix
File renamed without changes
modules/desktop/de/discrete/wm/niri/workspaces.nix → modules/desktop/de/custom/wm/niri/workspaces.nix
File renamed without changes
modules/desktop/de/discrete/wm/niri/xwayland.nix → modules/desktop/de/custom/wm/niri/xwayland.nix
File renamed without changes
modules/desktop/de/discrete/clipboard.nix → modules/desktop/de/custom/clipboard.nix
@@ -1,5 +1,5 @@
 {
-  flake.modules.homeManager.de-discrete = {pkgs, ...}: {
+  flake.modules.homeManager.de-custom = {pkgs, ...}: {
     home.packages = [
       pkgs.wl-clipboard-rs
     ];
modules/desktop/de/discrete/default.nix → modules/desktop/de/custom/default.nix
@@ -1,12 +1,12 @@
 {config, ...}: {
-  flake.modules.nixos.de-discrete = _: {
+  flake.modules.nixos.de-custom = _: {
     imports = with config.flake.modules.nixos; [
       wm-niri
       # de-shell # No de-shell nixos module yet
     ];
   };
 
-  flake.modules.homeManager.de-discrete = _: {
+  flake.modules.homeManager.de-custom = _: {
     imports = with config.flake.modules.homeManager; [
       wm-niri
       de-shell
modules/desktop/de/discrete/idle.nix → modules/desktop/de/custom/idle.nix
@@ -1,5 +1,5 @@
 {
-  flake.modules.homeManager.de-discrete = _: {
+  flake.modules.homeManager.de-custom = _: {
     services.hypridle = {
       enable = true;
     };
modules/desktop/de/discrete/polkit.nix → modules/desktop/de/custom/polkit.nix
@@ -1,12 +1,12 @@
 {
-  flake.modules.nixos.de-discrete = _: {
+  flake.modules.nixos.de-custom = _: {
     security.polkit = {
       enable = true;
       adminIdentities = ["unix-group:wheel"];
     };
   };
 
-  flake.modules.homeManager.de-discrete = _: {
+  flake.modules.homeManager.de-custom = _: {
     services.polkit-gnome.enable = true;
   };
 }
modules/desktop/de/discrete/secret-store.nix → modules/desktop/de/custom/secret-store.nix
@@ -1,5 +1,5 @@
 {
-  flake.modules.nixos.de-discrete = _: {
+  flake.modules.nixos.de-custom = _: {
     services.gnome.gnome-keyring = {
       enable = true;
     };
modules/desktop/de/discrete/xdg-portal.nix → modules/desktop/de/custom/xdg-portal.nix
@@ -1,5 +1,5 @@
 {
-  flake.modules.nixos.de-discrete = _: {
+  flake.modules.nixos.de-custom = _: {
     xdg.portal = {
       enable = true;
       config = {
modules/desktop/de/default.nix
@@ -3,14 +3,14 @@
   flake.modules.nixos.desktop = _: {
     imports = with config.flake.modules.nixos; [
       # de-plasma
-      de-discrete
+      de-custom
     ];
   };
 
   flake.modules.homeManager.desktop = _: {
     imports = with config.flake.modules.homeManager; [
       # de-plasma
-      de-discrete
+      de-custom
     ];
   };
 }