Split Hyprlock,Noctalia-Shell and Hyprpaper into separate directories. Made changes to ncli, to automatically switch specialisations. Started configuring niri.

This commit is contained in:
2025-11-25 14:30:53 +01:00
parent 157ba06453
commit 69d1d05563
26 changed files with 784 additions and 93 deletions

22
hyprland/home.nix Normal file
View File

@ -0,0 +1,22 @@
{pkgs, inputs, ...}:
{
imports = [
];
wayland.windowManager.hyprland = {
enable = true;
xwayland.enable = true;
settings = {
# bind = [
# "SUPER, Space, pkill rofi || rofi -show drun -modi drun,filebrowser,run,window"
# ];
#So hyprland doesnt break after a rebuild...
#exec = [ "systemctl --user restart hyprland-session.target" ];
};
extraConfig = builtins.readFile ./hyprland.conf;
};
}