Compare commits
2 commits
d0587daf1e
...
81af2e7c6b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
81af2e7c6b | ||
|
|
2cff9a6429 |
|
|
@ -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"];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue