Reorganize for zfs
This commit is contained in:
parent
2933964680
commit
cfb48de40c
57 changed files with 817 additions and 492 deletions
25
configurations/networkmanager.nix
Normal file
25
configurations/networkmanager.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
custom.zfs.systemLinks = [
|
||||
{ path = "/etc/NetworkManager/system-connections"; type = "data"; }
|
||||
];
|
||||
|
||||
networking = {
|
||||
hosts = { "127.0.0.1" = [ "dodona.localhost" "sandbox.localhost" ]; };
|
||||
networkmanager = {
|
||||
enable = true;
|
||||
packages = [ pkgs.networkmanager-vpnc ];
|
||||
wifi.macAddress = "random";
|
||||
};
|
||||
};
|
||||
|
||||
users.users.charlotte.extraGroups = [
|
||||
"networkmanager"
|
||||
];
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
networkmanagerapplet
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue