Files
nixos-config/hosts/template/configuration.nix
T
2025-12-23 13:48:12 +03:00

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;
}