about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-13 12:03:41 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-13 12:03:41 -0800
commiteebd938fa14164f6f9412e2f61f733a43894dda5 (patch)
tree772f7785a068a3de783b564e46d31934f53e7b02 /users
parentcli: this is not working (diff)
downloadworld-eebd938fa14164f6f9412e2f61f733a43894dda5.tar.gz
sway: adjust configuration
Create a new directory to have all things related to sway.

Add some extra configuration for wofi.
Diffstat (limited to '')
-rw-r--r--users/fcuny/desktop/default.nix1
-rw-r--r--users/fcuny/desktop/sway.nix40
-rw-r--r--users/fcuny/desktop/sway/default.nix39
-rw-r--r--users/fcuny/desktop/sway/wofi.nix19
-rw-r--r--users/fcuny/desktop/wofi.nix5
5 files changed, 59 insertions, 45 deletions
diff --git a/users/fcuny/desktop/default.nix b/users/fcuny/desktop/default.nix
index 65542e8..10eea44 100644
--- a/users/fcuny/desktop/default.nix
+++ b/users/fcuny/desktop/default.nix
@@ -5,6 +5,7 @@
     ./browser.nix
     ./gtk.nix
     ./media.nix
+    ./sway
     ./terminal.nix
     ./trust
     ./xdg.nix
diff --git a/users/fcuny/desktop/sway.nix b/users/fcuny/desktop/sway.nix
deleted file mode 100644
index 0f1631e..0000000
--- a/users/fcuny/desktop/sway.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
-  imorts = [
-    ./swayidle.nix
-    ./wofi.nix
-  ]
-
-  home.packages = with pkgs; [
-    pavucontrol
-    wofi
-    wl-clipboard
-    wf-recorder
-  ];
-
-  home.sessionVariables = {
-    MOZ_ENABLE_WAYLAND = true;
-    LIBSEAT_BACKEND = "logind";
-  };
-
-  wayland.windowManager.sway = {
-    enable = true;
-    systemdIntegration = true;
-    wrapperFeatures.gtk = true;
-    config = rec {
-      modifier = "Mod4";
-      terminal = "${config.programs.alacritty.package}/bin/alacritty";
-      menu = "${pkgs.wofi}/bin/wofi -S run";
-    };
-    defaultWorkspace = "workspace number 1";
-    startup = [
-      # Initial lock
-      { command = "${pkgs.swaylock-effects}/bin/swaylock"; }
-      # Start idle daemon
-      { command = "${pkgs.swayidle}/bin/swayidle -w"; }
-      # Start waybar
-      { command = "${pkgs.waybar}/bin/waybar"; }
-    ];
-  };
-}
diff --git a/users/fcuny/desktop/sway/default.nix b/users/fcuny/desktop/sway/default.nix
new file mode 100644
index 0000000..d4d9093
--- /dev/null
+++ b/users/fcuny/desktop/sway/default.nix
@@ -0,0 +1,39 @@
+{ config, lib, pkgs, ... }:
+
+{
+  imorts = [
+    ./wofi.nix
+  ];
+
+  home.packages = [
+    pkgs.pavucontrol
+    pkgs.wofi
+    pkgs.wl-clipboard
+    pkgs.wf-recorder
+  ];
+
+  home.sessionVariables = {
+    MOZ_ENABLE_WAYLAND = true;
+    LIBSEAT_BACKEND = "logind";
+  };
+
+  wayland.windowManager.sway = {
+    enable = true;
+    systemdIntegration = true;
+    config = rec {
+      modifier = "Mod4";
+      terminal = "${config.programs.alacritty.package}/bin/alacritty";
+      menu = "${pkgs.wofi}/bin/wofi -S run";
+      defaultWorkspace = "workspace number 1";
+      startup = [
+        # Initial lock
+        { command = "${pkgs.swaylock-effects}/bin/swaylock"; }
+        # Start idle daemon
+        { command = "${pkgs.swayidle}/bin/swayidle -w"; }
+        # Start waybar
+        { command = "${pkgs.waybar}/bin/waybar"; }
+      ];
+      bars = [ ];
+    };
+  };
+}
diff --git a/users/fcuny/desktop/sway/wofi.nix b/users/fcuny/desktop/sway/wofi.nix
new file mode 100644
index 0000000..6368a7a
--- /dev/null
+++ b/users/fcuny/desktop/sway/wofi.nix
@@ -0,0 +1,19 @@
+{ pkgs, config, ... }:
+
+{
+  home.packages = with pkgs; [
+    wofi
+  ];
+
+  xdg.configFile."wofi/config".text = ''
+    image_size=48
+    columns=3
+    allow_images=true
+    insensitive=true
+    term=${config.wayland.windowManager.sway.config.terminal}
+
+    run-always_parse_args=true
+    run-cache_file=/dev/null
+    run-exec_search=true
+  '';
+}
diff --git a/users/fcuny/desktop/wofi.nix b/users/fcuny/desktop/wofi.nix
deleted file mode 100644
index efdf3fd..0000000
--- a/users/fcuny/desktop/wofi.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{ pkgs, config, ... }: {
-  home.packages = with pkgs; [
-    wofi
-  ];
-}