Added nixos configs

This commit is contained in:
2026-02-22 19:25:39 +01:00
parent c0f19a200d
commit 8694deed28
9013 changed files with 118058 additions and 0 deletions
@@ -0,0 +1,31 @@
{ pkgs, ... }:
let
moduleName = "hm-hyprland";
in
{
imports = [
./bindings.nix
];
# Home Manager Hyprland configuration (user-level)
# This installs Hyprland in the user environment and can manage config under ~/.config/hypr/
wayland.windowManager.hyprland = {
enable = true;
# You can optionally set package = pkgs.hyprland; if you want a specific one.
};
# Put your hyprland.conf in the standard Hyprland location:
xdg.enable = true;
xdg.configFile."hypr/hyprland.conf".source = ./conf/hyprland.conf;
# Session variables that *belong in Home Manager* (user session scope)
home.sessionVariables = {
XDG_CURRENT_DESKTOP = "Hyprland";
XDG_SESSION_DESKTOP = "Hyprland";
XDG_SESSION_TYPE = "wayland";
};
# Marker file
home.file.".nixlog/loaded.${moduleName}-module-loaded".text = "loaded\n";
}