mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34:08 -05:00
35 lines
486 B
Nix
35 lines
486 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./waybar.nix
|
|
../swww
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|