Compare commits

...

2 commits

Author SHA1 Message Date
caandt 81af2e7c6b plasma application menu 2025-08-13 11:26:48 -04:00
caandt 2cff9a6429 hebesu 2025-08-13 11:25:52 -04:00
2 changed files with 8 additions and 2 deletions

View file

@ -18,7 +18,7 @@
boot.extraModulePackages = [];
fileSystems."/" = {
device = "/dev/disk/by-uuid/e9de5286-c8b1-4629-be01-f052c34b4062";
device = "/dev/disk/by-uuid/54ac149b-bc06-440c-b832-1af6be370d62";
fsType = "ext4";
};
@ -30,7 +30,7 @@
boot.initrd.luks.devices."drive".device = "/dev/disk/by-uuid/60d5cc58-4381-4869-a1b5-d4e2bf1afdfd";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/F0F5-744F";
device = "/dev/disk/by-uuid/95E7-3B26";
fsType = "vfat";
options = ["fmask=0022" "dmask=0022"];
};

View file

@ -18,6 +18,12 @@ lib.mkIf config.u.has.graphical {
};
services.desktopManager.plasma6.enable = true;
programs.partition-manager.enable = true;
environment.systemPackages = let
application-menu = pkgs.runCommandLocal "xdg-application-menu" {} ''
mkdir -p $out/etc/xdg/menus/
ln -s ${pkgs.kdePackages.plasma-workspace}/etc/xdg/menus/plasma-applications.menu $out/etc/xdg/menus/applications.menu
'';
in [application-menu];
services.libinput = {
enable = true;
mouse.accelProfile = "flat";