35 lines
977 B
Nix
35 lines
977 B
Nix
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
|
{ lib, config, pkgs, flakeRoot, home-manager, inputs, ... }:
|
|
let
|
|
username = config.defaultUser or "henrov";
|
|
assetPath = "${flakeRoot}/generated/.config/hypr";
|
|
hyprlandPkg =
|
|
pkgs.hyprland or
|
|
pkgs.hyprland-git or
|
|
inputs.hyprland.packages.${pkgs.system}.default;
|
|
in
|
|
{
|
|
# Install Hyprland systemwide
|
|
programs.hyprland.enable = true;
|
|
programs.hyprland.withUWSM = true;
|
|
programs.hyprland.package = hyprlandPkg;
|
|
|
|
environment.systemPackages = [ hyprlandPkg ];
|
|
|
|
# Home Manager user configuration
|
|
home-manager.users = {
|
|
${username} = {
|
|
|
|
home.activation.MakeHyprMutable = {
|
|
after = [ "writeBoundary" ];
|
|
before = [];
|
|
data = ''
|
|
rm -f $HOME/.config/hypr/*
|
|
cp ${assetPath}/* $HOME/.config/hypr/
|
|
chmod u+w $HOME/.config/hypr/*
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|