Files
nixos/hosts/laptop/configuration.nix
Melvin Ragusa 5e944043b1 split hosts
2026-02-05 09:51:31 +01:00

33 lines
762 B
Nix

# configuration.nix
# Laptop NixOS configuration - desktop environment, no gaming
{
config,
pkgs,
inputs,
lib,
username,
...
}:
{
imports = [
./hardware-configuration.nix
../../modules/core
../../modules/hardware
../../modules/desktop
../../modules/dev
../../modules/services/maintenance.nix
../../modules/services/printing.nix
../../modules/services/avahi.nix
# Uncomment if you want music server on laptop:
# ../../modules/services/navidrome.nix
];
# Laptop-specific configuration
# Hostname should be set in hardware-configuration.nix or here
# networking.hostName = "laptop";
# Laptop-specific power management tweaks can go here
# The power module already enables power-profiles-daemon
}