forked from JaKooLit/NixOS-Hyprland
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwayland.nix
51 lines (47 loc) · 1.24 KB
/
wayland.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
inputs,
pkgs,
...
}: {
programs = {
hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; #hyprland-git
#package = inputs.hyprland-stable.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
#package = pkgs.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; # xdphls
#portalPackage = pkgs.xdg-desktop-portal-hyprland;
xwayland.enable = true;
};
nix-ld.enable = true;
waybar.enable = false;
hyprlock.enable = true;
firefox.enable = false;
git.enable = true;
nm-applet.indicator = true;
thunar.enable = true;
thunar.plugins = with pkgs.xfce; [
exo
mousepad
thunar-archive-plugin
thunar-volman
tumbler
];
virt-manager.enable = false;
#steam = {
# enable = true;
# gamescopeSession.enable = true;
# remotePlay.openFirewall = true;
# dedicatedServer.openFirewall = true;
#};
xwayland.enable = true;
dconf.enable = true;
seahorse.enable = true;
fuse.userAllowOther = true;
mtr.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
};
}