dotfiles/nixos/boxes/mb1/default.nix

33 lines
706 B
Nix
Raw Normal View History

2023-04-07 11:34:18 +01:00
{ config, pkgs, inputs, lib, ... }: {
imports = [
../cli.nix
./disks.nix
"${inputs.nixpkgs-stable}/nixos/modules/profiles/qemu-guest.nix"
2023-04-07 21:26:37 +01:00
"${inputs.nixpkgs-nixos-unstable}/nixos/modules/services/misc/atuin.nix"
2023-04-07 11:34:18 +01:00
];
networking.hostName = "mb1";
environment.systemPackages = with pkgs; [ ];
boot.loader.grub = {
devices = [ "/dev/vda" ];
efiSupport = true;
efiInstallAsRemovable = true;
};
zramSwap = {
enable = true;
algorithm = "zstd";
memoryPercent = 80;
};
time.timeZone = "Europe/London";
2023-04-07 21:26:37 +01:00
disabledModules = [ "services/misc/atuin.nix" ];
services.atuin = {
enable = true;
openFirewall = true;
2023-04-14 19:02:05 +01:00
openRegistration = true;
2023-04-07 21:26:37 +01:00
};
2023-04-07 11:34:18 +01:00
}