refactor atuin out
This commit is contained in:
parent
e663596473
commit
e60b48be55
2 changed files with 26 additions and 21 deletions
24
nixos/boxes/mb1/atuin.nix
Normal file
24
nixos/boxes/mb1/atuin.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ config, pkgs, inputs, lib, ... }: {
|
||||||
|
imports = [
|
||||||
|
"${inputs.nixpkgs-nixos-unstable}/nixos/modules/services/misc/atuin.nix"
|
||||||
|
../nginx.nix
|
||||||
|
];
|
||||||
|
disabledModules = [ "services/misc/atuin.nix" ];
|
||||||
|
|
||||||
|
services.nginx = {
|
||||||
|
virtualHosts = {
|
||||||
|
"atuin.cyplo.dev" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."/" = { proxyPass = "http://127.0.0.1:8888"; };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.atuin = {
|
||||||
|
host = "127.0.0.1";
|
||||||
|
port = 8888;
|
||||||
|
enable = true;
|
||||||
|
openRegistration = false;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,10 +1,9 @@
|
||||||
{ config, pkgs, inputs, lib, ... }: {
|
{ config, pkgs, inputs, lib, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
|
"${inputs.nixpkgs-stable}/nixos/modules/profiles/qemu-guest.nix"
|
||||||
../cli.nix
|
../cli.nix
|
||||||
./disks.nix
|
./disks.nix
|
||||||
"${inputs.nixpkgs-stable}/nixos/modules/profiles/qemu-guest.nix"
|
./atuin.nix
|
||||||
"${inputs.nixpkgs-nixos-unstable}/nixos/modules/services/misc/atuin.nix"
|
|
||||||
../nginx.nix
|
|
||||||
];
|
];
|
||||||
networking.hostName = "mb1";
|
networking.hostName = "mb1";
|
||||||
environment.systemPackages = with pkgs; [ ];
|
environment.systemPackages = with pkgs; [ ];
|
||||||
|
@ -23,22 +22,4 @@
|
||||||
|
|
||||||
time.timeZone = "Europe/London";
|
time.timeZone = "Europe/London";
|
||||||
|
|
||||||
disabledModules = [ "services/misc/atuin.nix" ];
|
|
||||||
|
|
||||||
services.nginx = {
|
|
||||||
virtualHosts = {
|
|
||||||
"atuin.cyplo.dev" = {
|
|
||||||
forceSSL = true;
|
|
||||||
enableACME = true;
|
|
||||||
locations."/" = { proxyPass = "http://127.0.0.1:8888"; };
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.atuin = {
|
|
||||||
host = "127.0.0.1";
|
|
||||||
port = 8888;
|
|
||||||
enable = true;
|
|
||||||
openRegistration = false;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue