nix/nixos/minimal.nix

24 lines
686 B
Nix
Raw Normal View History

2024-05-01 11:11:58 +09:00
{ inputs, lib, pkgs, hostname, stateVersion, username, desktop, system, ... }: {
2023-09-21 20:31:55 +09:00
imports = [
2024-05-01 11:11:13 +09:00
# Modules
inputs.disko.nixosModules.disko
# Services
./common/services/openssh.nix
./common/services/fail2ban.nix
# Software
2024-05-01 11:14:00 +09:00
./common/packages/small.nix
2024-05-01 11:11:13 +09:00
# NixOS Modules
./common/modules/networking.nix # Initial Networking configs
./common/services/tailscale.nix # Generlc tailscale installation
2024-05-01 11:11:13 +09:00
./common/modules/nixos.nix # Common NixOS Configurations
./users/${username}
./hosts/${hostname}
] ++ lib.optional (builtins.isString desktop) ./common/desktops/${desktop};
2024-04-29 12:28:40 +09:00
programs.fish.enable = true;
2023-09-21 20:31:55 +09:00
}