Add basic hyprland config
This commit is contained in:
@@ -3,5 +3,6 @@
|
|||||||
./git.nix
|
./git.nix
|
||||||
./fish.nix
|
./fish.nix
|
||||||
./nixvim
|
./nixvim
|
||||||
|
./hyprland
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.kitty.enable = true;
|
||||||
|
wayland.windowManager.hyprland = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.hyprland;
|
||||||
|
|
||||||
|
xwayland.enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
monitor = [
|
||||||
|
",preferred,auto,1"
|
||||||
|
];
|
||||||
|
"$mod" = "SUPER";
|
||||||
|
bind = [
|
||||||
|
"ALT,Return,exec,kitty"
|
||||||
|
"ALTSHIFT,Q,killactive,"
|
||||||
|
"ALT,V,togglefloating,"
|
||||||
|
"ALT,F,fullscreen,0"
|
||||||
|
"$mod,F,exec,firefox"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./fish.nix
|
./fish.nix
|
||||||
|
./hyprland.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
programs.hyprland.enable = true;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user