nichts/hosts/lars/kronos/configuration.nix
2024-04-28 12:32:54 +02:00

52 lines
1,003 B
Nix

{ config, inputs, pkgs, ... }:
{
modules = {
other = {
system = {
hostname = "kronos";
username = "lars";
};
};
programs = {
alacritty = {
opacity = 0.8;
blur = true;
};
steam = {
enable = true;
gamescope = true;
};
minecraft = {
enable = true;
wayland = true;
};
};
hyprland = {
enable = true;
nvidia.enable = true;
monitor = [
"DP-2,2560x1440@144,0x0,1"
"DP-1,1920x1080@60,2560x0,1"
];
extra = {
exec-once = [
"hyprctl dispatch moveworkspacetomonitor 1 DP-2"
];
};
wallpaper = "wallpaper/wave.jpg";
};
};
services = {
flatpak.enable = true;
getty.autologinUser = "lars";
openssh = {
enable = true;
passwordAuthentication = true;
};
};
}