mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
18 lines
321 B
Nix
18 lines
321 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
assertions = [{
|
||
|
assertion = config.services.xserver.desktopManager.gnome.enable;
|
||
|
message = "Only tested with GNOME";
|
||
|
}];
|
||
|
|
||
|
imports = [
|
||
|
./t-telesec.nix
|
||
|
];
|
||
|
|
||
|
users.users.yoda = {
|
||
|
packages = with pkgs; [
|
||
|
gnome.networkmanager-openconnect # Openconnect VPN
|
||
|
];
|
||
|
};
|
||
|
}
|