Add hyprland to home-manager

This commit is contained in:
RealStickman 2023-04-18 17:02:45 +02:00
parent 88ffe4a212
commit fdee5e9450
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{pkgs, ...}: let
flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz";
hyprland = (import flake-compat {
src = builtins.fetchTarball "https://github.com/hyprwm/Hyprland/archive/master.tar.gz";
}).defaultNix;
in {
imports = [
hyprland.homeManagerModules.default
];
wayland.windowManager.hyprland = {
enable = true;
extraConfig = (builtins.readFile ./config/hypr/hyprland.conf);
};
}

View File

@ -18,6 +18,10 @@ in
kitty # terminfo support
];
imports = [
./home-hyprland.nix
];
programs = {
fish = {
enable = true;