15 lines
270 B
Nix
15 lines
270 B
Nix
{ config, inputs, pkgs, ... }:
|
|
{
|
|
modules = {
|
|
other = {
|
|
system = {
|
|
hostname = "dyonisos";
|
|
username = "lars";
|
|
};
|
|
};
|
|
hyprland = {
|
|
enable = true;
|
|
monitor = ",preferred,auto,1";
|
|
};
|
|
};
|
|
}
|