mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
11 lines
263 B
Nix
11 lines
263 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.networkmanager.enable = true;
|
|
#
|
|
# environment.systemPackages = with pkgs; [ nfs-utils ];
|
|
# boot.initrd.kernelModules = [ "nfs" ];
|
|
# boot.initrd.supportedFilesystems = [ "nfs" ];
|
|
# services.rpcbind.enable = true;
|
|
}
|