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

62 lines
1.1 KiB
Nix
Raw Normal View History

2024-09-02 13:03:19 +03:00
{ config, ... }: {
imports = [
./Backup.nix
2024-06-13 17:00:05 +03:00
./Container.nix
2024-03-29 09:05:08 +03:00
./Filesystem.nix
./Network.nix
./Photoprocess.nix
2024-06-27 02:14:33 +03:00
./YaMusicDownload.nix
];
2024-06-14 03:22:51 +03:00
2024-08-24 19:59:18 +03:00
home.nixos.enable = true;
user = {
root.enable = true;
voronind.enable = true;
};
2024-06-25 04:04:39 +03:00
module = {
builder.server.enable = true;
2024-08-02 23:45:19 +03:00
desktop.sway.enable = true;
2024-08-24 20:20:13 +03:00
kernel.enable = true;
keyd.enable = true;
2024-06-25 04:04:39 +03:00
amd = {
2024-08-24 20:06:51 +03:00
cpu.enable = true;
2024-06-25 04:04:39 +03:00
gpu.enable = true;
};
2024-08-02 23:45:19 +03:00
ftpd = {
enable = true;
storage = "/storage/hot/ftp";
};
package = {
common.enable = true;
core.enable = true;
desktop.enable = true;
};
2024-08-28 01:31:17 +03:00
zapret = {
enable = true;
2024-09-02 13:03:19 +03:00
params = "--dpi-desync=fake,disorder2 --dpi-desync-ttl=1 --dpi-desync-autottl=2";
autolist = "${config.container.module.frkn.storage}/Autolist.txt";
2024-08-28 01:31:17 +03:00
whitelist = ''
youtube.com
googlevideo.com
ytimg.com
2024-08-28 04:26:02 +03:00
youtu.be
2024-08-28 01:31:17 +03:00
rutracker.org
rutracker.cc
rutrk.org
2024-08-28 23:11:44 +03:00
t-ru.org
2024-09-02 13:03:19 +03:00
medium.com
quora.com
quoracdn.net
2024-08-28 01:31:17 +03:00
'';
};
2024-06-25 04:04:39 +03:00
};
2024-08-20 20:24:43 +03:00
setting = {
cpu.hwmon = {
path = "/sys/devices/pci0000:00/0000:00:18.3/hwmon";
file = "temp1_input";
};
};
}