59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
"${inputs.self}/modules/mizukios/base"
|
|
"${inputs.self}/modules/mizukios/features/system/boot.nix"
|
|
"${inputs.self}/modules/mizukios/features/remote/ssh.nix"
|
|
"${inputs.self}/modules/mizukios/features/management/podman.nix"
|
|
|
|
./services/quadlet/authentik.nix
|
|
./services/quadlet/conduit.nix
|
|
./services/quadlet/paste.nix
|
|
./services/quadlet/thetree.nix
|
|
./services/quadlet/today.nix
|
|
];
|
|
|
|
# 1. 크론 설정
|
|
services.cron = {
|
|
enable = true;
|
|
systemCronJobs = [
|
|
"0 1 * * * imnyang printf '\\n%s : ' \"$(date)\" >> /home/imnyang/codelounge.log && /home/imnyang/codelounge.sh >> /home/imnyang/codelounge.log"
|
|
];
|
|
};
|
|
|
|
services.qemuGuest.enable = true;
|
|
|
|
# 2. 사용자 SSH 키 등록
|
|
users.users.imnyang.openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOHP3Z+AYrRh9f8TYyqChKfeyNm3lOe0F75AwRHTTaxD imnyang@kazusa"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
eza
|
|
neovim
|
|
nil
|
|
nixd
|
|
];
|
|
|
|
programs.git.config = {
|
|
safe.directory = "*";
|
|
};
|
|
|
|
nix.settings.require-sigs = false;
|
|
|
|
networking.firewall.enable = false;
|
|
|
|
# /dev/sdd1 (ext4, UUID efdf753d-282c-4b78-9549-a124b353c6a5)
|
|
fileSystems."/mnt/static" = {
|
|
device = "/dev/disk/by-uuid/efdf753d-282c-4b78-9549-a124b353c6a5";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
systemd.tmpfiles.rules = [
|
|
"L+ /var/static - - - - /mnt/static/static"
|
|
];
|
|
|
|
networking.hostName = "hako";
|
|
system.stateVersion = "26.05";
|
|
}
|