dotfiles/nixos/boxes/mb1/default.nix

28 lines
409 B
Nix
Raw Normal View History

2023-08-13 17:00:41 +01:00
{
config,
pkgs,
inputs,
lib,
...
}: {
2023-04-07 11:34:18 +01:00
imports = [
2023-04-17 15:19:45 +01:00
"${inputs.nixpkgs-stable}/nixos/modules/profiles/qemu-guest.nix"
2023-04-07 11:34:18 +01:00
../cli.nix
2023-10-29 12:21:13 +00:00
../send-logs.nix
2023-04-17 15:19:45 +01:00
./atuin.nix
2023-04-22 09:26:30 +01:00
./boot.nix
./disks.nix
2023-05-20 17:26:09 +01:00
./search.nix
2023-08-12 18:15:18 +01:00
./blog.nix
2023-04-07 11:34:18 +01:00
];
networking.hostName = "mb1";
zramSwap = {
enable = true;
algorithm = "zstd";
2023-04-17 14:11:38 +01:00
memoryPercent = 100;
2023-04-07 11:34:18 +01:00
};
time.timeZone = "Europe/London";
}