13 lines
304 B
Nix
13 lines
304 B
Nix
{ pkgs, ... }: {
|
|
users.mutableUsers = false;
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
networking.wireless.enable = false; # For some reason this is needed all of the time
|
|
|
|
boot.supportedFilesystems = [ "ntfs" ];
|
|
|
|
# Basic Services
|
|
services.smartd.enable = true;
|
|
services.uptimed.enable = true;
|
|
}
|