34 lines
474 B
Nix
34 lines
474 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./waybar.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
foot
|
|
wofi
|
|
swaynotificationcenter
|
|
polkit_gnome
|
|
swayidle
|
|
sway-audio-idle-inhibit
|
|
swaylock-effects
|
|
sway-contrib.grimshot
|
|
waybar
|
|
wl-clipboard
|
|
hyprlock
|
|
grim
|
|
slurp
|
|
swappy
|
|
wljoywake
|
|
];
|
|
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
config = null;
|
|
extraConfig = builtins.readFile ./sway.conf;
|
|
};
|
|
}
|