1
Fork 0

vm: wiggle imports a bit

This commit is contained in:
Motiejus Jakštys 2024-01-16 11:41:15 +02:00
parent 994a4ad18b
commit 8909ef3fd5
2 changed files with 5 additions and 15 deletions

View File

@ -145,6 +145,7 @@
nixosConfigurations.vm = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
"${nixpkgs}/nixos/modules/virtualisation/qemu-vm.nix"
./vm.nix
e11sync-module
];

19
vm.nix
View File

@ -1,22 +1,12 @@
{
pkgs,
modulesPath,
...
}: {
{pkgs, ...}: {
e11sync.enable = true;
imports = [(modulesPath + "/virtualisation/qemu-vm.nix")];
virtualisation.graphics = false;
environment.systemPackages = with pkgs; [
tmux
htop
];
nix.extraOptions = ''
experimental-features = nix-command flakes
trusted-users = vm
'';
nix.extraOptions = ''experimental-features = nix-command flakes'';
users = {
mutableUsers = false;
users.nixos = {
@ -25,13 +15,12 @@
hashedPassword = "";
};
};
virtualisation.graphics = false;
security.sudo.wheelNeedsPassword = false;
services.getty.autologinUser = "nixos";
networking = {
hostName = "vm";
firewall = {
allowedTCPPorts = [8001];
};
firewall.allowedTCPPorts = [22 8001];
};
system.stateVersion = "23.11";
}