Created basic NixOS and home-manager flake

This commit is contained in:
Bo⋆˚✿˖° 2025-09-01 13:36:09 +02:00
parent 17687db113
commit 06e98520af
9 changed files with 420 additions and 0 deletions

11
modules/nixos/kde.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
# Enables the Plasma 6 DE and the SDDM DM with Wayland
services.desktopManager.plasma6.enable = true;
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
enableHidpi = true;
};
}