Add some common touch input packages, add brightness control for sway

This commit is contained in:
Evie Litherland-Smith 2023-04-17 14:34:41 +01:00
parent d177474ad8
commit 7335a7c88e
4 changed files with 18 additions and 2 deletions

View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
squeekboard
lisgd
];
programs.wlogout = {
enable = true;
};
}

View file

@ -6,6 +6,7 @@
./rofi.nix
];
home.packages = with pkgs; [
swaylock-effects
swayimg
hyprpaper
dolphin
@ -13,6 +14,7 @@
socat
];
programs.swaylock.settings = {
enable = true;
screenshots = true;
clock = true;
indicator = true;

View file

@ -1,7 +1,10 @@
{ ... }:
{ pkgs, ... }:
{
imports = [ ./common-wayland.nix ];
#xdg.configFile."sway".source = ./config/sway;
home.packages = with pkgs; [
brightnessctl
];
wayland.windowManager.sway = {
enable = true;
};

View file

@ -1,9 +1,10 @@
{ ... }: {
imports = [
./env/sway.nix
./env/common-touchinput.nix
./packages/env/bash.nix
./packages/tui
./packages/gui/browser.nix
./packages/gui/browser-wayland.nix
./packages/gui/foot.nix
./packages/gui/kitty.nix
];