dotfiles/nixos/boxes/mb1/default.nix

23 lines
382 B
Nix
Raw Normal View History

2023-04-07 11:34:18 +01:00
{ config, pkgs, inputs, lib, ... }: {
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-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";
2023-08-12 18:15:18 +01:00
2023-04-07 11:34:18 +01:00
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";
2023-04-07 21:26:37 +01:00
2023-04-07 11:34:18 +01:00
}