feat: add many many features

This commit is contained in:
Zhongheng Liu 2025-02-23 00:36:14 +02:00
commit 00f5075f17
Signed by: steven
GPG key ID: 805A28B071DAD84B
9 changed files with 1535 additions and 14 deletions

25
nixos/spec.nix Normal file
View file

@ -0,0 +1,25 @@
{ config, pkgs, lib, ... }: {
specialisation = {
wayland = {
configuration = {
programs = {
hyprland = {
enable = true; # enables Hyprland DM.
withUWSM = true; # NEW Universal Wayland Session Manager
};
};
};
};
xorg = {
configuration = lib.recursiveUpdate
{
services.xserver.displayManager.startx.enable = true;
}
(import ./dwm {
inherit config;
inherit pkgs;
inherit lib;
});
};
};
}