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

42 lines
662 B
Nix
Raw Normal View History

2024-06-25 04:04:39 +03:00
{ ... }: {
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-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-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";
};
};
}