2 days of work
This commit is contained in:
parent
ad427500ad
commit
f8e261ad07
18 changed files with 391 additions and 32 deletions
15
roles/network.nix
Normal file
15
roles/network.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue