feat: add many many features
This commit is contained in:
parent
bb120b4e3d
commit
00f5075f17
9 changed files with 1535 additions and 14 deletions
25
nixos/spec.nix
Normal file
25
nixos/spec.nix
Normal 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;
|
||||
});
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue