This commit is contained in:
Miguel Palhas
2025-06-29 15:13:01 +01:00
parent 0f2a209c52
commit 2d1bd96434
6 changed files with 37 additions and 28 deletions
+12 -2
View File
@@ -1,12 +1,22 @@
{ inputs, pkgs, ... }:
{
environment.systemPackages = [
pkgs.wl-clipboard
environment.systemPackages = with pkgs; [
wl-clipboard
hyprland
];
# thumbnail support for images
services.tumbler.enable = true;
environment.etc."xdg/wayland-sessions/hyprland.desktop".text = ''
[Desktop Entry]
Name=Hyprland
Comment=Hyprland Wayland Compositor
Exec=Hyprland
Type=Application
DesktopNames=Hyprland
'';
nix.settings = {
substituters = [ "https://hyprland.cachix.org" ];
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];