forked from Shinonome/dots-hyprland
converted hyprland conf to nix
This commit is contained in:
@@ -1,17 +1,29 @@
|
||||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./keybinds.nix
|
||||
./execs.nix
|
||||
./rules.nix
|
||||
./env.nix
|
||||
./colours.nix
|
||||
./hypr/keybinds.nix
|
||||
./hypr/execs.nix
|
||||
./hypr/rules.nix
|
||||
./hypr/env.nix
|
||||
./hypr/colours.nix
|
||||
];
|
||||
|
||||
home.file = {
|
||||
".config/hypr/scripts" = {
|
||||
source = builtins.path {
|
||||
path = ../../.config/hypr/hyprland/scripts;
|
||||
executable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
xwayland.enable = true;
|
||||
systemd.enable = true;
|
||||
settings = {
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user