refactor(hyprland): make global hyprland module

This commit is contained in:
matt1432 2023-11-24 18:25:59 -05:00
commit acc2d647f7
10 changed files with 311 additions and 500 deletions

View file

@ -1,30 +0,0 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
dracula-theme
];
services = {
xserver = {
enable = true;
layout = "ca";
displayManager = {
sddm = {
enable = true;
settings = {
General = {
DisplayServer = "wayland";
InputMethod = "";
};
Wayland.CompositorCommand = "${pkgs.weston}/bin/weston --shell=fullscreen-shell.so";
Theme = {
Current = "Dracula";
CursorTheme = "Dracula-cursors";
CursorSize = 24;
};
};
};
};
};
gnome.gnome-keyring.enable = true;
};
}