font config & assorted goodies

This commit is contained in:
Emile Clark-Boman 2024-10-30 17:35:16 +10:00
parent 68f969ec59
commit 045f346d3c
10 changed files with 236 additions and 9 deletions

View file

View file

View file

View file

View file

@ -0,0 +1,30 @@
{
pkgs,
inputs,
config,
lib,
...
}:
{
options.hyprland = {
enable = lib.mkEnableOption "Hyprland";
};
config = lib.mkIf config.hyprland.enable {
programs.hyprland = {
enable = true;
#package = inputs.hyprland.packages.${pkgs.system}.hyprland;
xwayland.enable = true;
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
};
# TODO: finish this (I didn't like the dotfiles I was getting inspo from and stopped)
};
}