wayland for drag

This commit is contained in:
TheWanderingCrow 2025-09-02 12:06:21 -04:00
parent e9b58c9baa
commit 08a18d473f
2 changed files with 4 additions and 59 deletions

View file

@ -47,7 +47,10 @@
}; };
# Enable the KDE Plasma Desktop Environment. # Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true; services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
networking = { networking = {

View file

@ -1,58 +0,0 @@
#########################
# #
# Mote - OctoPrint Node #
# #
#########################
{
inputs,
lib,
pkgs,
...
}: {
imports = lib.flatten [
# Disks
inputs.disko.nixosModules.disko
(lib.custom.relativeToRoot "hosts/common/disks/btrfs-disk.nix")
{
_module.args = {
disk = "/dev/sda";
withSwap = true;
swapSize = "8";
};
}
# Misc
(map lib.custom.relativeToRoot [
# Required configs
"hosts/common/core"
# Optional configs
])
];
services.octoprint = {
enable = true;
openFirewall = true;
port = 5000;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hostSpec = {
hostName = "Mote";
persistFolder = "/persist";
};
networking = {
networkmanager.enable = true;
enableIPv6 = false;
};
boot.loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
};
};
}