mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
23 lines
317 B
Nix
23 lines
317 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./locales.nix
|
|
./nix.nix
|
|
./network.nix
|
|
./security.nix
|
|
];
|
|
environment.systemPackages = [
|
|
pkgs.nfs-utils
|
|
];
|
|
|
|
services = {
|
|
fwupd.enable = true;
|
|
|
|
# override nixos-hardware profile
|
|
throttled.enable = false;
|
|
thermald.enable = true;
|
|
};
|
|
}
|
|
|