36 lines
587 B
Nix
Raw Normal View History

2021-01-21 21:13:53 +03:00
{ inputs, ... }: {
2021-01-22 20:44:23 +03:00
imports = with inputs.self.nixosModules; [
./hardware-configuration.nix
2021-01-23 22:21:51 +03:00
inputs.self.nixosProfiles.base
2021-06-12 00:45:38 +03:00
gitea
2021-02-08 23:29:43 +03:00
# jitsi
2021-01-22 20:44:23 +03:00
mailserver
matrix-synapse
minidlna
nextcloud
nginx
vsftpd
2021-03-18 17:10:07 +03:00
home-assistant
2021-03-18 22:37:59 +03:00
mastodon
2021-01-22 20:44:23 +03:00
];
2021-01-24 16:35:12 +03:00
services.logind.lidSwitch = "ignore";
2021-01-22 20:44:23 +03:00
security.sudo.wheelNeedsPassword = false;
2021-01-21 21:13:53 +03:00
deviceSpecific.devInfo = {
2021-01-22 20:44:23 +03:00
legacy = true;
2021-01-21 21:13:53 +03:00
cpu = {
vendor = "intel";
clock = 2500;
cores = 2;
};
drive = {
type = "ssd";
speed = 1000;
size = 120;
};
ram = 8;
};
}