From ed169135af3b36742deb0bca304bfb39425dc26d Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 13 Feb 2022 11:30:06 -0800 Subject: sway: first attempt at configuring sway Let's switch right away to sway instead, now that there's an emacs package to support wayland. --- users/fcuny/desktop/default.nix | 2 -- users/fcuny/desktop/sway.nix | 40 ++++++++++++++++++++++++++++++++++++++++ users/fcuny/desktop/wofi.nix | 5 +++++ 3 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 users/fcuny/desktop/sway.nix create mode 100644 users/fcuny/desktop/wofi.nix (limited to 'users/fcuny') diff --git a/users/fcuny/desktop/default.nix b/users/fcuny/desktop/default.nix index 0b9c0a2..65542e8 100644 --- a/users/fcuny/desktop/default.nix +++ b/users/fcuny/desktop/default.nix @@ -4,9 +4,7 @@ imports = [ ./browser.nix ./gtk.nix - ./i3.nix ./media.nix - ./redshift.nix ./terminal.nix ./trust ./xdg.nix 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"; } + ]; + }; +} diff --git a/users/fcuny/desktop/wofi.nix b/users/fcuny/desktop/wofi.nix new file mode 100644 index 0000000..efdf3fd --- /dev/null +++ b/users/fcuny/desktop/wofi.nix @@ -0,0 +1,5 @@ +{ pkgs, config, ... }: { + home.packages = with pkgs; [ + wofi + ]; +} -- cgit 1.4.1