2024-01-08 10:36:26 -05:00
|
|
|
# Wayland configuration.nix
|
|
|
|
{ config, lib, pkgs, inputs, user, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./gui.nix
|
|
|
|
];
|
|
|
|
environment = {
|
|
|
|
variables = {
|
|
|
|
TERMINAL = "foot";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
xdg = {
|
|
|
|
autostart.enable = true;
|
|
|
|
portal = {
|
|
|
|
enable = true;
|
|
|
|
xdgOpenUsePortal = true;
|
|
|
|
extraPortals = [
|
|
|
|
pkgs.xdg-desktop-portal-hyprland
|
|
|
|
];
|
|
|
|
configPackages = [
|
|
|
|
pkgs.xdg-desktop-portal-hyprland
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
fonts.packages = with pkgs; [
|
|
|
|
comic-mono
|
|
|
|
noto-fonts
|
|
|
|
noto-fonts-cjk
|
|
|
|
noto-fonts-emoji
|
|
|
|
fira-code
|
|
|
|
fira-code-symbols
|
|
|
|
dina-font
|
|
|
|
];
|
|
|
|
programs = {
|
|
|
|
hyprland = {
|
|
|
|
enable = true;
|
|
|
|
xwayland.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
security.pam.services.swaylock = {
|
|
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
bemenu
|
|
|
|
bemoji
|
|
|
|
cliphist
|
2024-01-08 22:22:06 -05:00
|
|
|
eww-wayland
|
2024-01-08 10:36:26 -05:00
|
|
|
foot
|
|
|
|
grimblast
|
|
|
|
hyprpicker
|
|
|
|
swaylock
|
|
|
|
swww
|
|
|
|
tessen
|
|
|
|
wl-clipboard
|
|
|
|
wtype
|
|
|
|
];
|
|
|
|
}
|