This repository has been archived on 2023-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/home-manager/hyprland.nix

18 lines
464 B
Nix
Raw Normal View History

2023-04-18 17:02:45 +02:00
{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;
2023-05-01 09:47:30 +02:00
extraConfig = (builtins.readFile ./config/hypr/hyprland.conf);
2023-04-18 17:02:45 +02:00
};
}