summaryrefslogtreecommitdiff
path: root/hosts/desktop/configuration.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-05-17 01:05:14 +0200
committeradikro <adikro@disroot.org>2026-05-17 01:05:14 +0200
commitdec36d2e9aaca7ca7149a244aa984e97925a3dba (patch)
treebdf3ec35e101beaa4e74c48930dca4341d48ae2c /hosts/desktop/configuration.nix
parent8bedd672ac49617d2e3a808efe470228cbb0240d (diff)
moved ssh and tailscale to srv, revamped netwroking modules
Diffstat (limited to 'hosts/desktop/configuration.nix')
-rw-r--r--hosts/desktop/configuration.nix19
1 files changed, 6 insertions, 13 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
index 9fbe3cb..c7fa49c 100644
--- a/hosts/desktop/configuration.nix
+++ b/hosts/desktop/configuration.nix
@@ -1,9 +1,4 @@
-{
- config,
- username,
- pkgs-master,
- ...
-}:
+{ config, username, ... }:
{
system.stateVersion = "25.05";
@@ -45,22 +40,22 @@
zram.enable = true;
swapfile = {
enable = true;
- size = 32;
+ size = 16;
};
};
network.enable = true;
security = {
enable = true;
sandboxing.enable = true;
- # antivirus.enable = true;
};
- ssh.enable = true;
- tailscale.enable = true;
storage.enable = true;
users.enable = true;
};
srv = {
bluetooth.enable = true;
+ tailscale.enable = true;
+ ssh.enable = true;
+ firewall.enable = true;
yggdrasil.enable = true;
i2p = {
enable = true;
@@ -87,7 +82,7 @@
virtualization.kvm.enable = true;
kdeconnect.enable = true;
nix-helper.enable = true;
- monero.enable = true;
+ monero.wallet.enable = true;
sops.enable = true;
syncthing.enable = true;
omnisearch.enable = true;
@@ -110,8 +105,6 @@
];
};
- environment.systemPackages = [ pkgs-master.simplex-chat-desktop ];
-
# services.netbox = {
# enable = true;
# package = pkgs-stable.netbox;