28 lines
445 B
Nix
28 lines
445 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./hardware.nix
|
|
./boot.nix
|
|
./interface.nix
|
|
./networking.nix
|
|
./users.nix
|
|
./web.nix
|
|
./chat.nix
|
|
./coding.nix
|
|
./gaming.nix
|
|
./media.nix
|
|
./illustration.nix
|
|
./modelling.nix
|
|
./backup.nix
|
|
];
|
|
|
|
time.timeZone = "America/Los_Angeles";
|
|
|
|
nixpkgs = {
|
|
hostPlatform = "x86_64-linux";
|
|
config.allowUnfree = true;
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|