aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/desktop/sway.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-13 11:30:06 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-13 11:30:06 -0800
commited169135af3b36742deb0bca304bfb39425dc26d (patch)
tree547d718277c86e7e34ed4e4fd569454be2e47a55 /users/fcuny/desktop/sway.nix
parenthosts: install linux perf tools for the host (diff)
downloadinfra-ed169135af3b36742deb0bca304bfb39425dc26d.tar.gz
sway: first attempt at configuring sway
Let's switch right away to sway instead, now that there's an emacs package to support wayland.
Diffstat (limited to 'users/fcuny/desktop/sway.nix')
-rw-r--r--users/fcuny/desktop/sway.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/users/fcuny/desktop/sway.nix b/users/fcuny/desktop/sway.nix
new file mode 100644
index 0000000..0f1631e
--- /dev/null
+++ b/users/fcuny/desktop/sway.nix
@@ -0,0 +1,40 @@
+{ 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"; }
+ ];
+ };
+}