initial configuration
This commit is contained in:
23
modules/system/desktop/hyprland.nix
Normal file
23
modules/system/desktop/hyprland.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
xwayland.enable = true;
|
||||
};
|
||||
|
||||
# Configure display manager
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default_session = {
|
||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --remember --time --cmd Hyprland";
|
||||
user = "xeovalyte";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Configure networking
|
||||
networking.networkmanager.enable = true;
|
||||
networking.wireless.iwd.enable = true;
|
||||
}
|
Reference in New Issue
Block a user