Evolution
This commit is contained in:
parent
fb8887a43f
commit
5e4aa0d7dd
@ -6,6 +6,10 @@ let primary-ip = "10.0.0.21";
|
|||||||
in {
|
in {
|
||||||
config = {
|
config = {
|
||||||
|
|
||||||
|
boot.kernelParams = [ "nomodeset" ];
|
||||||
|
|
||||||
|
console.font = "VGA";
|
||||||
|
|
||||||
fudo.secrets = {
|
fudo.secrets = {
|
||||||
host-secrets.plato = {
|
host-secrets.plato = {
|
||||||
host-keytab = {
|
host-keytab = {
|
||||||
|
@ -4,6 +4,7 @@ with lib;
|
|||||||
let
|
let
|
||||||
hostname = "procul";
|
hostname = "procul";
|
||||||
host-ipv4 = "172.86.179.18";
|
host-ipv4 = "172.86.179.18";
|
||||||
|
git-ipv4 = "172.86.179.19";
|
||||||
domain = config.fudo.hosts.${hostname}.domain;
|
domain = config.fudo.hosts.${hostname}.domain;
|
||||||
site = config.fudo.hosts.${hostname}.site;
|
site = config.fudo.hosts.${hostname}.site;
|
||||||
host-fqdn = "${hostname}.${domain}";
|
host-fqdn = "${hostname}.${domain}";
|
||||||
|
@ -18,7 +18,8 @@ in {
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
system = { autoUpgrade.enable = true; };
|
# We're deploying via nixops, this is just annoying
|
||||||
|
system = { autoUpgrade.enable = false; };
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
xserver = mkIf enable-gui {
|
xserver = mkIf enable-gui {
|
||||||
|
@ -11,6 +11,7 @@ let
|
|||||||
enable-gui = host-config.enable-gui;
|
enable-gui = host-config.enable-gui;
|
||||||
|
|
||||||
gui-packages = with pkgs; [
|
gui-packages = with pkgs; [
|
||||||
|
exodus
|
||||||
firefox
|
firefox
|
||||||
jq
|
jq
|
||||||
openttd
|
openttd
|
||||||
@ -37,6 +38,7 @@ let
|
|||||||
git
|
git
|
||||||
gnutls
|
gnutls
|
||||||
gnupg
|
gnupg
|
||||||
|
google-chrome
|
||||||
guile
|
guile
|
||||||
imagemagick
|
imagemagick
|
||||||
ipfs
|
ipfs
|
||||||
|
@ -129,7 +129,7 @@ in {
|
|||||||
settings = mkIf (cfg.ssh != null) {
|
settings = mkIf (cfg.ssh != null) {
|
||||||
server = {
|
server = {
|
||||||
SSH_DOMAIN = cfg.hostname;
|
SSH_DOMAIN = cfg.hostname;
|
||||||
# SSH_LISTEN_PORT = cfg.ssh.listen-port;
|
SSH_LISTEN_PORT = cfg.ssh.listen-port;
|
||||||
SSH_LISTEN_HOST = cfg.ssh.listen-ip;
|
SSH_LISTEN_HOST = cfg.ssh.listen-ip;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user