mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
feat: reisen containers
This commit is contained in:
parent
df7b0595a3
commit
c725df2591
16 changed files with 238 additions and 64 deletions
|
|
@ -18,7 +18,6 @@
|
|||
imports = with meta; [
|
||||
nixos.kat
|
||||
nixos.arc
|
||||
nixos.sops
|
||||
];
|
||||
|
||||
users.motd = ''
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
{ config, lib, ... }: with lib;
|
||||
{ config, name, lib, ... }: with lib;
|
||||
|
||||
{
|
||||
networking.nftables.enable = true;
|
||||
networking.tempAddresses = "disabled";
|
||||
networking = {
|
||||
nftables.enable = true;
|
||||
tempAddresses = "disabled";
|
||||
domain = mkDefault "gensokyo.zone";
|
||||
hostName = mkOverride 25 name;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
7
nixos/base/urxvt.nix
Normal file
7
nixos/base/urxvt.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.buildPackages.rxvt-unicode-unwrapped.terminfo
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue