Worked on hyprland.conf

This commit is contained in:
2026-03-07 22:19:57 +01:00
parent a3b14c3b69
commit 2a95d27e69
13 changed files with 212 additions and 5 deletions
+13 -5
View File
@@ -1,4 +1,15 @@
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
{
config,
pkgs,
lib,
user,
inputs,
flakeRoot,
...
}:
let
hyprlandConf = builtins.readFile (flakeRoot + "/assets/hyprland/conf/hyprland.conf");
in
{
# Nix settings to use Hyprland's cache for packages
nix.settings = {
@@ -15,9 +26,6 @@
# Hyprland-specific Home Manager configurations
home-manager.users.${user.username} = {
wayland.windowManager.hyprland = {
enable = true;
settings = { };
};
xdg.configFile."hypr/hyprland.conf".text = hyprlandConf;
};
}