20 lines
398 B
Nix
20 lines
398 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
# Host-specific system configuration
|
|
networking.hostName = "traveldroid";
|
|
system.stateVersion = "26.05";
|
|
|
|
#enablingModules
|
|
enableFlatpaks = true;
|
|
enableThunar = true;
|
|
enableWofi = true;
|
|
enableZenBrowser = true;
|
|
enableEmacs = true;
|
|
enableKitty = true;
|
|
enableZsh = true;
|
|
enableFonts = true;
|
|
enableHyprland = true;
|
|
enableStylix = true;
|
|
}
|