bah
This commit is contained in:
74
systems/aarch64-linux/lin-va-mbp-work-vm/default.nix
Executable file
74
systems/aarch64-linux/lin-va-mbp-work-vm/default.nix
Executable file
@@ -0,0 +1,74 @@
|
||||
{ namespace
|
||||
, lib
|
||||
, pkgs
|
||||
, modulesPath
|
||||
, ...
|
||||
}:
|
||||
let
|
||||
inherit (lib.${namespace}) enabled;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
(modulesPath + "/profiles/qemu-guest.nix")
|
||||
];
|
||||
|
||||
system.stateVersion = "25.11";
|
||||
time.timeZone = "America/New_York";
|
||||
|
||||
# System Config
|
||||
reichard = {
|
||||
nix = enabled;
|
||||
|
||||
system = {
|
||||
boot = {
|
||||
enable = true;
|
||||
silentBoot = true;
|
||||
};
|
||||
disk = {
|
||||
enable = true;
|
||||
diskPath = "/dev/vda";
|
||||
};
|
||||
networking = {
|
||||
enable = true;
|
||||
useStatic = {
|
||||
interface = "enp0s1";
|
||||
address = "192.168.64.3";
|
||||
defaultGateway = "192.168.64.1";
|
||||
nameservers = [ "192.168.64.1" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
hardware = {
|
||||
opengl = enabled;
|
||||
};
|
||||
|
||||
services = {
|
||||
openssh = enabled;
|
||||
avahi = enabled;
|
||||
printing = enabled;
|
||||
ydotool = enabled;
|
||||
};
|
||||
|
||||
security = {
|
||||
sops = enabled;
|
||||
};
|
||||
|
||||
virtualisation = {
|
||||
podman = enabled;
|
||||
};
|
||||
|
||||
programs = {
|
||||
graphical = {
|
||||
wms.hyprland = enabled;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Additional System Packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
mosh
|
||||
rclone
|
||||
unzip
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user