28 lines
471 B
Nix
Executable File
28 lines
471 B
Nix
Executable File
{pkgs, inputs, ...}:
|
|
{
|
|
|
|
imports = [
|
|
inputs.noctalia.homeModules.default
|
|
];
|
|
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
|
|
#settings = {
|
|
# bind = [
|
|
# "SUPER, Space, pkill rofi || rofi -show drun -modi drun,filebrowser,run,window"
|
|
# ];
|
|
#};
|
|
|
|
extraConfig = builtins.readFile ./hyprland.conf;
|
|
};
|
|
|
|
programs = {
|
|
noctalia-shell = {
|
|
#enable = true;
|
|
systemd.enable = true;
|
|
};
|
|
};
|
|
}
|