hope this works
This commit is contained in:
43
modules/sway/default.nix
Normal file
43
modules/sway/default.nix
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
wl-clipboard # Copy/Paste functionality.
|
||||
mako # Notification utility.
|
||||
];
|
||||
|
||||
# Enables Gnome Keyring to store secrets for applications.
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
|
||||
# Enable Sway.
|
||||
programs.sway = {
|
||||
enable = true;
|
||||
wrapperFeatures.gtk = true;
|
||||
extraPackages = [
|
||||
pkgs.foot
|
||||
pkgs.swayidle
|
||||
pkgs.swaylock
|
||||
pkgs.wmenu
|
||||
pkgs.wl-clipboard
|
||||
pkgs.mako
|
||||
pkgs.kdePackages.spectacle
|
||||
pkgs.kdePackages.kate
|
||||
pkgs.kdePackages.filelight
|
||||
inputs.glide.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||||
];
|
||||
};
|
||||
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default_session = {
|
||||
command = "${pkgs.tuigreet}/bin/tuigreet --time --cmd sway";
|
||||
user = "laythe";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
32
modules/sway/home.nix
Normal file
32
modules/sway/home.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
wrapperFeatures.gtk = true; # Fixes common issues with GTK 3 apps
|
||||
config = rec {
|
||||
modifier = "Mod4";
|
||||
# Use kitty as default terminal
|
||||
terminal = "foot";
|
||||
keybindings = {
|
||||
# Brightness Controls
|
||||
"XF86MonBrightnessDown" = "exec light -U 10";
|
||||
"XF86MonBrightnessUp" = "exec light -A 10";
|
||||
|
||||
# Volume Controls
|
||||
"XF86AudioRaiseVolume" = "exec pactl set-sink-volume @DEFAULT_SINK@ +1%";
|
||||
"XF86AudioLowerVolume" = "exec pactl set-sink-volume @DEFAULT_SINK@ -1%";
|
||||
"XF86AudioMute" = "exec pactl set-sink-mute @DEFAULT_SINK@ toggle";
|
||||
};
|
||||
input = {
|
||||
"type:touchpad" = {
|
||||
# Enables or disables tap for specified input device.
|
||||
tap = "enabled";
|
||||
# Enables or disables natural (inverted) scrolling for the specified input device.
|
||||
natural_scroll = "enabled";
|
||||
# Enables or disables disable-while-typing for the specified input device.
|
||||
dwt = "enabled";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user