font config & assorted goodies
This commit is contained in:
parent
68f969ec59
commit
045f346d3c
10 changed files with 236 additions and 9 deletions
0
modules/core/bootloader/default.nix
Normal file
0
modules/core/bootloader/default.nix
Normal file
0
modules/core/bootloader/grub.nix
Normal file
0
modules/core/bootloader/grub.nix
Normal file
0
modules/core/bootloader/systemd-boot.nix
Normal file
0
modules/core/bootloader/systemd-boot.nix
Normal file
0
modules/core/sound/default.nix
Normal file
0
modules/core/sound/default.nix
Normal file
30
modules/hyprland/default.nix
Normal file
30
modules/hyprland/default.nix
Normal 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)
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue