blob: cb191a23bbc92437b9cb3b35686dadc505496b9c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{ pkgs, ... }:
{
imports = [
./modules/hardware
./modules/users
./modules/network
./modules/media
./modules/dashboard
./modules/storage
./modules/notifications
./modules/monitoring
];
# services.shiori = {
# enable = true;
# port = 3144;
# };
# networking.firewall.allowedTCPPorts = [ 3144 ];
environment.systemPackages = with pkgs; [
bottom
mtm
neovim
lf
util-linux
dig
];
time.timeZone = "Asia/Kolkata";
i18n.defaultLocale = "en_GB.UTF-8";
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
nix.gc = {
automatic = true;
dates = "weekly";
};
nixpkgs.config.allowUnfree = true;
system.stateVersion = "25.05";
}
|