initial commit

This commit is contained in:
zackartz 2024-02-29 22:20:26 -05:00
commit 1f9e5e17af
19 changed files with 1515 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{
pkgs,
lib,
inputs,
...
}: {
imports = [./config.nix ./binds.nix];
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.default;
systemd = {
variables = ["--all"];
extraCommands = [
"systemctl --user stop graphical-session.target"
"systemctl --user start hyprland-session.target"
];
};
};
}