14 lines
322 B
Nix
14 lines
322 B
Nix
{ pkgs, ...}: {
|
|
imports = [
|
|
./kitty.nix # Terminal
|
|
./hypridle.nix
|
|
./hyprlock.nix
|
|
./hyprpaper.nix
|
|
./waybar # Status Bar
|
|
../rofi # App Launcher
|
|
];
|
|
|
|
# You might want to set environment variables for Wayland
|
|
wayland.displayProtocols = [ "wayland" "x11" ];
|
|
}
|