fwupd
This commit is contained in:
parent
42a6ae421e
commit
f7a5c0696e
1 changed files with 16 additions and 0 deletions
|
|
@ -24,6 +24,22 @@
|
|||
dataDir = "/home/benson/.config/syncthing/db"; # Folder for Syncthing's database
|
||||
};
|
||||
|
||||
services.fwupd.enable = true;
|
||||
|
||||
networking.firewall = {
|
||||
enable = true;
|
||||
allowedTCPPortRanges = [
|
||||
{ from = 1714; to = 1764; } # KDE Connect
|
||||
];
|
||||
allowedUDPPortRanges = [
|
||||
{ from = 1714; to = 1764; } # KDE Connect
|
||||
];
|
||||
|
||||
# Syncthing
|
||||
allowedTCPPorts = [ 22000 ];
|
||||
allowedUDPPorts = [ 22000 21027 ];
|
||||
};
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.benson = {
|
||||
isNormalUser = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue