diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/herra/configuration.nix | 1 | ||||
| -rw-r--r-- | hosts/herra/network.nix | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/hosts/herra/configuration.nix b/hosts/herra/configuration.nix index 34e1c32..f3df657 100644 --- a/hosts/herra/configuration.nix +++ b/hosts/herra/configuration.nix @@ -10,6 +10,7 @@ ./audio.nix ./drivers.nix ./steam.nix + ./network.nix ]; networking.hostName = "herra"; diff --git a/hosts/herra/network.nix b/hosts/herra/network.nix new file mode 100644 index 0000000..d0e2b6b --- /dev/null +++ b/hosts/herra/network.nix @@ -0,0 +1,6 @@ +{pkgs, ...}: { + environment.systemPackages = with pkgs; [ + libimobiledevice + usbmuxd + ]; +} |
