add hyprland conf
This commit is contained in:
parent
1849fdc496
commit
e1f0194350
21 changed files with 712 additions and 263 deletions
34
nixos/htz/vms/pool.nix
Normal file
34
nixos/htz/vms/pool.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
system,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [inputs.ethereum-nix.nixosModules.default];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
inputs.ethereum-nix.packages.${system}.rocketpool
|
||||
docker-compose
|
||||
];
|
||||
environment.interactiveShellInit = ''
|
||||
alias rp='rocketpool --allow-root'
|
||||
'';
|
||||
virtualisation = {
|
||||
docker = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
microvm = {
|
||||
vcpu = 2;
|
||||
mem = 4096;
|
||||
volumes = [
|
||||
{
|
||||
image = "/var/lib/microvms/vm-pool/vm-pool-root.img";
|
||||
label = "vm-pool-root";
|
||||
mountPoint = "/";
|
||||
size = 40000;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue