24 lines
452 B
Nix
24 lines
452 B
Nix
{ lib, config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./audio
|
|
./base-cli
|
|
./hardware
|
|
./virt
|
|
];
|
|
|
|
# Timzone and locales (same for all machines so I put it here)
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
time.timeZone = "Europe/Paris";
|
|
|
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
|
"steam"
|
|
"steam-original"
|
|
"steam-unwrapped"
|
|
"steam-run"
|
|
"obsidian"
|
|
"nvidia-x11"
|
|
"nvidia-settings"
|
|
];
|
|
}
|