nichts/hosts/lars/dyonisos/configuration.nix
2024-04-15 13:18:01 +02:00

16 lines
308 B
Nix

{ config, inputs, pkgs, ... }:
{
modules = {
other = {
system = {
hostname = "dyonisos";
username = "lars";
};
};
hyprland = {
enable = true;
monitor = [",preferred,auto,2"];
wallpaper = "wallpaper/nix.png";
};
};
}