initial configuration

This commit is contained in:
2024-03-09 17:18:36 +01:00
commit b51cdf718a
41 changed files with 1741 additions and 0 deletions

View 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;
}