nichts/hosts/lars/dyonisos/configuration.nix

17 lines
309 B
Nix
Raw Normal View History

2024-04-12 07:09:49 +02:00
{ config, inputs, pkgs, ... }:
{
2024-04-12 22:03:29 +02:00
modules = {
2024-04-12 07:09:49 +02:00
other = {
system = {
hostname = "dyonisos";
username = "lars";
};
};
2024-04-12 19:30:10 +02:00
hyprland = {
enable = true;
2024-04-14 23:11:54 +02:00
monitor = [",preferred,auto,2"];
2024-04-16 08:59:20 +02:00
wallpaper = "wallpaper/wave.jpg";
2024-04-12 19:30:10 +02:00
};
2024-04-12 07:09:49 +02:00
};
}