2 days of work

This commit is contained in:
Stefan Schwarz 2020-10-07 23:23:16 +02:00
parent ad427500ad
commit f8e261ad07
18 changed files with 391 additions and 32 deletions

15
roles/network.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config.allowUnfree = true; };
cloudstation = pkgs.libsForQt5.callPackage (import ../packages/cloudstation.nix) {};
in {
networking.networkmanager.enable = true;
users.users.stefan.extraGroups = [ "networkmanager" ];
environment.systemPackages = with pkgs; [
networkmanagerapplet
networkmanager-vpnc
];
}