aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/desktop/sway
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/desktop/sway')
-rw-r--r--users/fcuny/desktop/sway/default.nix39
-rw-r--r--users/fcuny/desktop/sway/wofi.nix19
2 files changed, 58 insertions, 0 deletions
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
+ '';
+}