first test-build

This commit is contained in:
2026-03-06 23:01:13 +01:00
parent 690ab55e10
commit d1056a9f60
5 changed files with 1073 additions and 346 deletions
@@ -1,7 +1,13 @@
{ config, pkgs, lib, user, inputs, ... }:
let
# Read the contents of the bindings.conf file
bindingsContent = builtins.readFile ./assets/hyprland/conf/bindings.conf;
# Create a configuration file from the bindings content
configFile = pkgs.writeText "hyprland.conf" bindingsContent;
in
{
imports = [
# No subfolders to import
];
# .. put any code here
wayland.windowManager.hyprland = {
enable = true; # Enable Hyprland as the window manager
config = configFile; # Use the generated configuration file
};
}