nix/host/x86_64-linux/home/default.nix

67 lines
1.3 KiB
Nix
Raw Permalink Normal View History

{ config, ... }:
{
home.nixos.enable = true;
user = {
root.enable = true;
voronind.enable = true;
};
2024-06-25 04:04:39 +03:00
module = {
builder.server.enable = true;
desktop.sway.enable = true;
kernel.enable = true;
keyd.enable = true;
amd = {
cpu.enable = true;
gpu.enable = true;
};
ftpd = {
enable = true;
storage = "/storage/hot/ftp";
};
package = {
common.enable = true;
core.enable = true;
desktop.enable = true;
};
zapret = {
enable = true;
params = [
"--dpi-desync=fake,disorder2"
"--dpi-desync-ttl=1"
"--dpi-desync-autottl=2"
];
whitelist = [
"youtube.com"
"googlevideo.com"
"ytimg.com"
"youtu.be"
"rutracker.org"
"rutracker.cc"
"rutrk.org"
"t-ru.org"
"medium.com"
"dis.gd"
"discord.co"
"discord.com"
"discord.dev"
"discord.gg"
"discord.gift"
"discord.media"
"discord.new"
"discordapp.com"
"discordapp.net"
"discordcdn.com"
"discordstatus.com"
];
};
};
2024-08-20 20:24:43 +03:00
setting = {
cpu.hwmon = {
path = "/sys/devices/pci0000:00/0000:00:18.3/hwmon";
file = "temp1_input";
};
};
}