25 lines
630 B
Nix
25 lines
630 B
Nix
# ==========================================
|
|
# HOST: matiss (Hyprland Workstation)
|
|
# ==========================================
|
|
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
# System modules
|
|
../../modules/system/nix.nix
|
|
../../modules/system/boot.nix
|
|
../../modules/system/network.nix
|
|
../../modules/system/firewall.nix
|
|
../../modules/system/desktop.nix
|
|
../../modules/system/hardware.nix
|
|
../../modules/system/user.nix
|
|
../../modules/system/fonts.nix
|
|
../../modules/system/services.nix
|
|
../../modules/system/vpn.nix
|
|
];
|
|
|
|
networking.hostName = "matiss";
|
|
}
|