Recreated files
This commit is contained in:
+362
-356
File diff suppressed because it is too large
Load Diff
+8
-2
@@ -671,6 +671,7 @@ The ./generated/top.nix file acts as an anchor or entry point for the entire cha
|
|||||||
flakeRoot,
|
flakeRoot,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
hyprlandConfigDir = "${config.home-manager.users.${user.username}.xdg.configHome}/hypr";
|
hyprlandConfigDir = "${config.home-manager.users.${user.username}.xdg.configHome}/hypr";
|
||||||
# Dynamically read all files in assets/hyprland/conf/
|
# Dynamically read all files in assets/hyprland/conf/
|
||||||
@@ -698,13 +699,18 @@ in
|
|||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Ensure the Hyprland config directory exists
|
||||||
|
xdg.configFile."hypr/.keep" = {
|
||||||
|
text = "";
|
||||||
|
};
|
||||||
|
|
||||||
# Merge dynamic Hyprland configs with existing xdg.configFile
|
# Merge dynamic Hyprland configs with existing xdg.configFile
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
# Your existing manual configs (if any)
|
# Your existing manual configs (if any)
|
||||||
}
|
} // hyprlandConfs;
|
||||||
// hyprlandConfs;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/mangowc/top.nix=
|
** =generated/mangowc/top.nix=
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
flakeRoot,
|
flakeRoot,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
hyprlandConfigDir = "${config.home-manager.users.${user.username}.xdg.configHome}/hypr";
|
hyprlandConfigDir = "${config.home-manager.users.${user.username}.xdg.configHome}/hypr";
|
||||||
# Dynamically read all files in assets/hyprland/conf/
|
# Dynamically read all files in assets/hyprland/conf/
|
||||||
@@ -33,10 +34,14 @@ in
|
|||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Ensure the Hyprland config directory exists
|
||||||
|
xdg.configFile."hypr/.keep" = {
|
||||||
|
text = "";
|
||||||
|
};
|
||||||
|
|
||||||
# Merge dynamic Hyprland configs with existing xdg.configFile
|
# Merge dynamic Hyprland configs with existing xdg.configFile
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
# Your existing manual configs (if any)
|
# Your existing manual configs (if any)
|
||||||
}
|
} // hyprlandConfs;
|
||||||
// hyprlandConfs;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user