10 lines
217 B
Nix
10 lines
217 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.hostName = "hostname";
|
|
imports = [ ../../nixos/custom.nix ./hardware-configuration.nix ];
|
|
|
|
services.desktopManager.gnome.enable = true;
|
|
programs.hyprland.enable = false;
|
|
}
|