nix/nixos/small.nix

64 lines
1.6 KiB
Nix
Raw Normal View History

2024-02-09 22:44:36 +09:00
{ lib, config, unstable-pkgs, pkgs, hostname, stateVersion, username, desktop, gpu, inputs, system, theme, ... }: {
2023-10-04 19:51:02 +09:00
imports = [
2023-10-04 21:45:59 +09:00
# Modules
inputs.disko.nixosModules.disko
2023-10-04 19:51:02 +09:00
# Services
./common/services/openssh.nix
./common/services/fail2ban.nix
./common/services/tailscale.nix
./common/services/promtail.nix
./common/services/telegraf.nix
2024-01-12 10:10:25 +09:00
./common/services/gnupg-agent.nix
2023-10-04 19:51:02 +09:00
# NixOS Modules
2023-10-06 19:41:55 +09:00
./common/modules/networking.nix # Initial Networking configs
./common/modules/nixos.nix # Common NixOS Configurations
./common/modules/remote-builders.nix # Add remote builders
2023-10-04 19:51:02 +09:00
2023-10-06 12:52:40 +09:00
./users/${username}
2023-10-04 19:51:02 +09:00
./hosts/${hostname}
];
2023-12-11 21:01:07 +09:00
2023-10-04 19:51:02 +09:00
# List packages installed in system profile
environment.systemPackages = with pkgs; [
2024-03-04 09:29:14 +09:00
rbw
2024-02-14 14:57:26 +09:00
dconf
2024-02-08 19:08:43 +09:00
ripgrep
2023-10-04 19:51:02 +09:00
git
2023-10-06 14:07:22 +09:00
bat
2023-10-06 14:09:07 +09:00
eza
2023-10-06 14:07:22 +09:00
duf
2023-10-04 19:51:02 +09:00
gnupg
2023-10-06 14:07:22 +09:00
screen
2023-10-06 14:57:17 +09:00
btop
2023-12-12 21:50:56 +09:00
sshpass
2023-12-15 18:58:06 +09:00
cryptsetup
2024-02-13 12:46:56 +09:00
fd
2023-10-04 19:51:02 +09:00
];
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
2024-01-22 15:47:48 +09:00
# https://github.com/NixOS/nixpkgs/issues/180175#issuecomment-1658731959
systemd.services.NetworkManager-wait-online = {
serviceConfig = {
ExecStart = [ "" "${pkgs.networkmanager}/bin/nm-online -q" ];
};
};
2023-10-04 19:51:02 +09:00
system.stateVersion = stateVersion;
2024-02-10 10:32:16 +09:00
nixpkgs.hostPlatform = system;
2024-02-08 19:08:43 +09:00
}