From f8023ca8434d2402a78a5bd74e04f902dddd979c Mon Sep 17 00:00:00 2001 From: twoneis Date: Wed, 18 Sep 2024 18:27:06 +0200 Subject: [PATCH] xwl wrapper cause it's not actually sway now --- modules/apps/programs.nix | 4 ++-- modules/{apps/sway-wrapper.nix => niri/xwl-wrapper.nix} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename modules/{apps/sway-wrapper.nix => niri/xwl-wrapper.nix} (100%) diff --git a/modules/apps/programs.nix b/modules/apps/programs.nix index f00bb5a..b9e7174 100644 --- a/modules/apps/programs.nix +++ b/modules/apps/programs.nix @@ -1,7 +1,7 @@ { lib, config, pkgs, ... }: let inherit (lib) mkIf; inherit (config) conf; - mkSwayWrapper = import ./sway-wrapper.nix; + mkXwlWrapper = import ../niri/xwl-wrapper.nix; in { imports = [ ./firefox.nix @@ -23,7 +23,7 @@ in { libreoffice-qt6-fresh inkscape # freecad -- broken dependency - ] ++ [(mkSwayWrapper { lib = lib; pkgs = pkgs; app = "${pkgs.prusa-slicer}/bin/prusa-slicer"; name = "Prusa"; })]; + ] ++ [(mkXwlWrapper { lib = lib; pkgs = pkgs; app = "${pkgs.prusa-slicer}/bin/prusa-slicer"; name = "Prusa"; })]; home.file = { ".config/vesktop/settings.json" = { diff --git a/modules/apps/sway-wrapper.nix b/modules/niri/xwl-wrapper.nix similarity index 100% rename from modules/apps/sway-wrapper.nix rename to modules/niri/xwl-wrapper.nix