Split hyprland config and add ly display manager

This commit is contained in:
2025-11-27 14:16:28 +01:00
parent 2c96b2cf0e
commit ce404f7be1
3 changed files with 17 additions and 10 deletions
+2 -1
View File
@@ -3,6 +3,7 @@
./git.nix ./git.nix
./fish.nix ./fish.nix
./nixvim ./nixvim
./hyprland ./hyprland.nix
./kitty.nix
]; ];
} }
@@ -1,14 +1,8 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
programs.kitty = { services.displayManager.ly.enable = true;
enable = true;
themeFile = "tokyo_night_night"; programs.waybar.enable = true;
font = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrainsMono NF";
size = 14;
};
};
wayland.windowManager.hyprland = wayland.windowManager.hyprland =
let let
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
themeFile = "tokyo_night_night";
font = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrainsMono NF";
size = 14;
};
};
}