add some changes to nixos config

This commit is contained in:
2026-07-01 04:12:19 +02:00
parent 8fc0d08dbc
commit b584965a21
6 changed files with 29 additions and 9 deletions
+1
View File
@@ -0,0 +1 @@
.ccls-cache/
+8 -1
View File
@@ -25,7 +25,14 @@
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ]; options = [ "fmask=0077" "dmask=0077" ];
}; };
fileSystems."/srv/data" = {
device = "/dev/disk/by-label/DATA";
fsType = "ext4";
};
fileSystems."/srv/wd" = {
device = "/dev/disk/by-label/WD_2TB";
fsType = "ext4";
};
swapDevices = swapDevices =
[ { device = "/dev/mapper/luks-9cd65807-a47b-4ffe-ac11-05680b9fffb0"; } [ { device = "/dev/mapper/luks-9cd65807-a47b-4ffe-ac11-05680b9fffb0"; }
]; ];
+3 -3
View File
@@ -46,9 +46,9 @@ static const int lockfullscreen =
#include <X11/XF86keysym.h> #include <X11/XF86keysym.h>
static const Layout layouts[] = { static const Layout layouts[] = {
{"><>", NULL}, //{"><>", NULL},
//{NULL, centeredfloatingmaster}, {"[F]", centeredfloatingmaster},
//{"|M|", centeredmaster}, {"|M|", centeredmaster},
{"[]=", tile}, /* first entry is default */ {"[]=", tile}, /* first entry is default */
{"[M]", monocle}, {"[M]", monocle},
{"[@]", spiral}, {"[@]", spiral},
+1 -1
View File
@@ -18,7 +18,7 @@
}; };
nick = "halbg0tt"; nick = "halbg0tt";
server = { server = {
address = "irc.libera.chat"; address = "palladium.libera.chat";
autoConnect = false; autoConnect = false;
port = 6697; port = 6697;
}; };
+16
View File
@@ -5,5 +5,21 @@
weechat = { weechat = {
enable = true; enable = true;
}; };
tor = {
enable = true;
controlSocket.enable = true;
client = {
enable = true;
socksListenAddress = {
addr = "127.0.0.1";
port = 9050;
};
};
settings = {
MapAddress = "palladium.libera.chat libera75jm6of4wxpxt4aynol3xjmbtxgfyjpu34ss4d7r7q2v5zrpyd.onion";
ControlPort = [ 9051 ];
};
};
}; };
} }
-4
View File
@@ -6,10 +6,6 @@
enable = true; enable = true;
package = pkgs.mullvad-vpn; package = pkgs.mullvad-vpn;
}; };
tor = {
enable = false;
};
}; };
networking = { networking = {
networkmanager = { networkmanager = {