From 69085b22d036af1edcf020a870f01812de271b1b Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sat, 23 Sep 2023 16:47:07 +0200 Subject: [PATCH] add sway to phone --- hosts/phone/configuration.nix | 2 +- hosts/phone/modules/sway/default.nix | 39 ++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 hosts/phone/modules/sway/default.nix diff --git a/hosts/phone/configuration.nix b/hosts/phone/configuration.nix index 3bc565b..ef3ea89 100644 --- a/hosts/phone/configuration.nix +++ b/hosts/phone/configuration.nix @@ -4,7 +4,7 @@ imports = [ (import { device = "pine64-pinephone"; }) ./hardware-configuration.nix - + ./modules/sway ./utils/bento.nix ]; diff --git a/hosts/phone/modules/sway/default.nix b/hosts/phone/modules/sway/default.nix new file mode 100644 index 0000000..9a2c660 --- /dev/null +++ b/hosts/phone/modules/sway/default.nix @@ -0,0 +1,39 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + alsaUtils + apache-directory-studio + cryptomator + dbeaver + dbus-sway-environment + dracula-theme + firefox + foot + git + glib + gnome.seahorse + grim + htop + lisgd + mako + networkmanagerapplet + pavucontrol + pcmanfm + pinentry + squeekboard + sway-launcher-desktop + swayidle + swaylock + unzip + waybar + wayland + wl-clipboard + wofi + wtype + ]; + + programs.sway = { + enable = true; + wrapperFeatures.gtk = true; + }; +}