small modifications to desktop

This commit is contained in:
Thilo Billerbeck 2024-03-04 02:10:30 +01:00
parent 68e27997d3
commit d89551bb6c
3 changed files with 14 additions and 6 deletions
configs/thilo-pc

View file

@ -22,9 +22,6 @@
size = 128;
}; */
services.kdeconnect.enable = true;
services.kdeconnect.indicator = true;
home.sessionVariables = { LD_LIBRARY_PATH = "${pkgs.libGL}/lib"; };
home.packages = with pkgs; [ libsForQt5.discover ];

View file

@ -22,6 +22,14 @@
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_latest;
binfmt.registrations.appimage = {
wrapInterpreterInShell = false;
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic";
offset = 0;
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
magicOrExtension = ''\x7fELF....AI\x02'';
};
};
networking.hostName = "thilo-pc";
@ -38,6 +46,9 @@
};
};
programs.kdeconnect.enable = true;
programs.nix-ld.enable = true;
hardware.opengl = {
extraPackages = with pkgs; [ vaapiVdpau libvdpau-va-gl ];
};