add sway to phone

This commit is contained in:
2023-09-23 16:47:07 +02:00
parent d34ba2d59a
commit 69085b22d0
2 changed files with 40 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
imports = [ imports = [
(import <mobile-nixos/lib/configuration.nix> { device = "pine64-pinephone"; }) (import <mobile-nixos/lib/configuration.nix> { device = "pine64-pinephone"; })
./hardware-configuration.nix ./hardware-configuration.nix
<mobile-nixos/examples/phosh/phosh.nix> ./modules/sway
./utils/bento.nix ./utils/bento.nix
]; ];

View File

@@ -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;
};
}