nix machine / user configurations

add trimounts

ptr.pet 63697dca d2411690

verified
Changed files
+2664 -7
hosts
dzwonek
modules
headscale.nix
trimounts
modules
network
nushell
+5
deploy.nu
···
user: "root",
addr: "199.71.188.53",
},
+
trimounts: {
+
type: "nixos",
+
user: "root",
+
addr: "159.195.58.28",
+
},
"dusk@devel.mobi": {
type: "home",
user: "dusk",
+2 -2
flake.nix
···
nixosConfigurations = import ./hosts { inherit lib tlib allPkgsSets; };
homeConfigurations = import ./users { inherit lib tlib allPkgsSets; };
-
legacyPackages = l.mapAttrs (_: set: set.pkgs // { inherit (set) inputs; }) allPkgsSets;
-
packages = l.mapAttrs (_: set: set.exported) allPkgsSets;
+
# legacyPackages = l.mapAttrs (_: set: set.pkgs // { inherit (set) inputs; }) allPkgsSets;
+
# packages = l.mapAttrs (_: set: set.exported) allPkgsSets;
apps = miscApps;
# topology = lib.mapAttrs (_: pkgs:
+1
hosts/default.nix
···
dzwonek = allPkgsSets.x86_64-linux;
volsinii = allPkgsSets.x86_64-linux;
chernobog = allPkgsSets.x86_64-linux;
+
trimounts = allPkgsSets.x86_64-linux;
};
in
lib.mapAttrs mkSystem systems
+4 -4
hosts/dzwonek/modules/headscale.nix/default.nix
···
dst = [ "tag:other-infra:*" ];
}
{
+
src = [ "tag:private-infra" ];
+
dst = [ "tag:private-infra:*" ];
+
}
+
{
src = [ "wolumonde" ];
dst = [ "chernobog:*" ];
}
···
"tag:private-infra"
];
dst = [ "autogroup:internet:*" ];
-
}
-
{
-
src = [ "ellite@ellite.dev" ];
-
dst = [ "chernobog:8463" ];
}
];
};
+34
hosts/trimounts/default.nix
···
+
{
+
inputs,
+
tlib,
+
pkgs,
+
...
+
}:
+
{
+
imports = with inputs; [
+
"${facter}/modules/nixos/facter.nix"
+
"${agenix}/modules/age.nix"
+
"${home}/nixos"
+
"${disko}/module.nix"
+
../../modules
+
../../modules/stylix-null.nix
+
../../users/root
+
./disk-config.nix
+
]
+
++ (tlib.importFolder (toString ./modules));
+
facter.reportPath = ./facter.json;
+
+
boot.loader.grub = {
+
efiSupport = true;
+
efiInstallAsRemovable = true;
+
};
+
+
environment.systemPackages = [
+
pkgs.curl
+
pkgs.gitMinimal
+
];
+
+
networking.firewall.enable = true;
+
+
system.stateVersion = "25.11";
+
}
+54
hosts/trimounts/disk-config.nix
···
+
{
+
disko.devices = {
+
disk = {
+
main = {
+
type = "disk";
+
device = "/dev/vda";
+
content = {
+
type = "gpt";
+
partitions = {
+
boot = {
+
priority = 1;
+
name = "boot";
+
size = "1M";
+
type = "EF02";
+
};
+
esp = {
+
priority = 2;
+
name = "ESP";
+
size = "500M";
+
type = "EF00";
+
content = {
+
type = "filesystem";
+
format = "vfat";
+
mountpoint = "/boot";
+
mountOptions = [ "umask=0077" ];
+
};
+
};
+
root = {
+
priority = 3;
+
end = "-8G";
+
content = {
+
type = "btrfs";
+
extraArgs = [ "-f" ]; # Override existing partition
+
mountpoint = "/";
+
mountOptions = [
+
"compress=zstd"
+
"noatime"
+
];
+
};
+
};
+
plainSwap = {
+
priority = 4;
+
size = "100%";
+
content = {
+
type = "swap";
+
discardPolicy = "both";
+
};
+
};
+
};
+
};
+
};
+
};
+
};
+
}
+2547
hosts/trimounts/facter.json
···
+
{
+
"version": 1,
+
"system": "x86_64-linux",
+
"virtualisation": "kvm",
+
"hardware": {
+
"bios": {
+
"apm_info": {
+
"supported": false,
+
"enabled": false,
+
"version": 0,
+
"sub_version": 0,
+
"bios_flags": 0
+
},
+
"vbe_info": {
+
"version": 0,
+
"video_memory": 0
+
},
+
"pnp": false,
+
"pnp_id": 0,
+
"lba_support": false,
+
"low_memory_size": 0,
+
"smbios_version": 520
+
},
+
"bridge": [
+
{
+
"index": 11,
+
"attached_to": 0,
+
"class_list": [
+
"pci",
+
"bridge"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 1
+
},
+
"base_class": {
+
"hex": "0006",
+
"name": "Bridge",
+
"value": 6
+
},
+
"sub_class": {
+
"hex": "0001",
+
"name": "ISA bridge",
+
"value": 1
+
},
+
"vendor": {
+
"hex": "8086",
+
"name": "Intel Corporation",
+
"value": 32902
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "7000",
+
"value": 28672
+
},
+
"sub_device": {
+
"hex": "1100",
+
"value": 4352
+
},
+
"model": "Intel ISA bridge",
+
"sysfs_id": "/devices/pci0000:00/0000:00:01.0",
+
"sysfs_bus_id": "0000:00:01.0",
+
"detail": {
+
"function": 0,
+
"command": 7,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 0,
+
"prog_if": 0
+
},
+
"module_alias": "pci:v00008086d00007000sv00001AF4sd00001100bc06sc01i00"
+
},
+
{
+
"index": 13,
+
"attached_to": 0,
+
"class_list": [
+
"pci",
+
"bridge"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 0
+
},
+
"base_class": {
+
"hex": "0006",
+
"name": "Bridge",
+
"value": 6
+
},
+
"sub_class": {
+
"hex": "0000",
+
"name": "Host bridge",
+
"value": 0
+
},
+
"vendor": {
+
"hex": "8086",
+
"name": "Intel Corporation",
+
"value": 32902
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "1237",
+
"value": 4663
+
},
+
"sub_device": {
+
"hex": "1100",
+
"value": 4352
+
},
+
"revision": {
+
"hex": "0002",
+
"value": 2
+
},
+
"model": "Intel Host bridge",
+
"sysfs_id": "/devices/pci0000:00/0000:00:00.0",
+
"sysfs_bus_id": "0000:00:00.0",
+
"detail": {
+
"function": 0,
+
"command": 7,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 0,
+
"prog_if": 0
+
},
+
"module_alias": "pci:v00008086d00001237sv00001AF4sd00001100bc06sc00i00"
+
},
+
{
+
"index": 14,
+
"attached_to": 0,
+
"class_list": [
+
"pci",
+
"bridge"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 1
+
},
+
"base_class": {
+
"hex": "0006",
+
"name": "Bridge",
+
"value": 6
+
},
+
"sub_class": {
+
"hex": "0080",
+
"name": "Bridge",
+
"value": 128
+
},
+
"vendor": {
+
"hex": "8086",
+
"name": "Intel Corporation",
+
"value": 32902
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "7113",
+
"value": 28947
+
},
+
"sub_device": {
+
"hex": "1100",
+
"value": 4352
+
},
+
"revision": {
+
"hex": "0003",
+
"value": 3
+
},
+
"model": "Intel Bridge",
+
"sysfs_id": "/devices/pci0000:00/0000:00:01.3",
+
"sysfs_bus_id": "0000:00:01.3",
+
"resources": [
+
{
+
"type": "irq",
+
"base": 9,
+
"triggered": 0,
+
"enabled": true
+
}
+
],
+
"detail": {
+
"function": 3,
+
"command": 7,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 9,
+
"prog_if": 0
+
},
+
"driver": "piix4_smbus",
+
"driver_module": "i2c_piix4",
+
"drivers": [
+
"piix4_smbus"
+
],
+
"driver_modules": [
+
"i2c_piix4"
+
],
+
"module_alias": "pci:v00008086d00007113sv00001AF4sd00001100bc06sc80i00"
+
}
+
],
+
"cdrom": [
+
{
+
"index": 23,
+
"attached_to": 16,
+
"class_list": [
+
"cdrom",
+
"scsi",
+
"block_device"
+
],
+
"bus_type": {
+
"hex": "0084",
+
"name": "SCSI",
+
"value": 132
+
},
+
"slot": {
+
"bus": 0,
+
"number": 0
+
},
+
"base_class": {
+
"hex": "0106",
+
"name": "Mass Storage Device",
+
"value": 262
+
},
+
"sub_class": {
+
"hex": "0002",
+
"name": "CD-ROM",
+
"value": 2
+
},
+
"pci_interface": {
+
"hex": "0003",
+
"name": "DVD",
+
"value": 3
+
},
+
"vendor": {
+
"hex": "0000",
+
"name": "QEMU",
+
"value": 0
+
},
+
"device": {
+
"hex": "0000",
+
"name": "QEMU DVD-ROM",
+
"value": 0
+
},
+
"revision": {
+
"hex": "0000",
+
"name": "2.5+",
+
"value": 0
+
},
+
"model": "QEMU DVD-ROM",
+
"sysfs_id": "/class/block/sr0",
+
"sysfs_bus_id": "0:0:0:0",
+
"sysfs_device_link": "/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0",
+
"unix_device_name": "/dev/sr0",
+
"unix_device_number": {
+
"type": 98,
+
"major": 11,
+
"minor": 0,
+
"range": 1
+
},
+
"unix_device_names": [
+
"/dev/cdrom",
+
"/dev/disk/by-id/ata-QEMU_DVD-ROM_QM00001",
+
"/dev/disk/by-label/nixos-minimal-25.05-x86_64",
+
"/dev/disk/by-path/pci-0000:00:01.1-ata-1",
+
"/dev/disk/by-path/pci-0000:00:01.1-ata-1.0",
+
"/dev/disk/by-uuid/1980-01-01-00-00-00-00",
+
"/dev/root",
+
"/dev/sr0"
+
],
+
"unix_device_name2": "/dev/sg0",
+
"unix_device_number2": {
+
"type": 99,
+
"major": 21,
+
"minor": 0,
+
"range": 1
+
},
+
"driver": "ata_piix",
+
"driver_module": "ata_piix",
+
"drivers": [
+
"ata_piix",
+
"sr"
+
],
+
"driver_modules": [
+
"ata_piix",
+
"sr_mod"
+
]
+
}
+
],
+
"cpu": [
+
{
+
"architecture": "x86_64",
+
"vendor_name": "AuthenticAMD",
+
"family": 25,
+
"model": 17,
+
"stepping": 0,
+
"features": [
+
"fpu",
+
"vme",
+
"de",
+
"pse",
+
"tsc",
+
"msr",
+
"pae",
+
"mce",
+
"cx8",
+
"apic",
+
"sep",
+
"mtrr",
+
"pge",
+
"mca",
+
"cmov",
+
"pat",
+
"pse36",
+
"clflush",
+
"mmx",
+
"fxsr",
+
"sse",
+
"sse2",
+
"syscall",
+
"nx",
+
"mmxext",
+
"fxsr_opt",
+
"pdpe1gb",
+
"rdtscp",
+
"lm",
+
"rep_good",
+
"nopl",
+
"xtopology",
+
"cpuid",
+
"extd_apicid",
+
"tsc_known_freq",
+
"pni",
+
"pclmulqdq",
+
"ssse3",
+
"fma",
+
"cx16",
+
"pcid",
+
"sse4_1",
+
"sse4_2",
+
"x2apic",
+
"movbe",
+
"popcnt",
+
"tsc_deadline_timer",
+
"aes",
+
"xsave",
+
"avx",
+
"f16c",
+
"rdrand",
+
"hypervisor",
+
"lahf_lm",
+
"cmp_legacy",
+
"cr8_legacy",
+
"abm",
+
"sse4a",
+
"misalignsse",
+
"3dnowprefetch",
+
"osvw",
+
"topoext",
+
"perfctr_core",
+
"ssbd",
+
"ibrs",
+
"ibpb",
+
"stibp",
+
"ibrs_enhanced",
+
"vmmcall",
+
"fsgsbase",
+
"tsc_adjust",
+
"bmi1",
+
"avx2",
+
"smep",
+
"bmi2",
+
"erms",
+
"invpcid",
+
"avx512f",
+
"avx512dq",
+
"rdseed",
+
"adx",
+
"smap",
+
"avx512ifma",
+
"clflushopt",
+
"clwb",
+
"avx512cd",
+
"sha_ni",
+
"avx512bw",
+
"avx512vl",
+
"xsaveopt",
+
"xsavec",
+
"xgetbv1",
+
"xsaves",
+
"avx_vnni",
+
"avx512_bf16",
+
"clzero",
+
"xsaveerptr",
+
"wbnoinvd",
+
"arat",
+
"avx512vbmi",
+
"umip",
+
"pku",
+
"ospke",
+
"avx512_vbmi2",
+
"gfni",
+
"vaes",
+
"vpclmulqdq",
+
"avx512_vnni",
+
"avx512_bitalg",
+
"avx512_vpopcntdq",
+
"la57",
+
"rdpid",
+
"movdiri",
+
"movdir64b",
+
"fsrm",
+
"avx512_vp2intersect",
+
"flush_l1d",
+
"arch_capabilities"
+
],
+
"bugs": [
+
"sysret_ss_attrs",
+
"spectre_v1",
+
"spectre_v2",
+
"spec_store_bypass",
+
"srso",
+
"ibpb_no_ret",
+
"tsa"
+
],
+
"bogo": 4593.1,
+
"cache": 1024,
+
"physical_id": 0,
+
"siblings": 1,
+
"cores": 1,
+
"fpu": true,
+
"fpu_exception": true,
+
"cpuid_level": 13,
+
"write_protect": false,
+
"tlb_size": 1024,
+
"clflush_size": 64,
+
"cache_alignment": 64,
+
"address_sizes": {
+
"physical": "0x28",
+
"virtual": "0x39"
+
}
+
},
+
{
+
"architecture": "x86_64",
+
"vendor_name": "AuthenticAMD",
+
"family": 25,
+
"model": 17,
+
"stepping": 0,
+
"features": [
+
"fpu",
+
"vme",
+
"de",
+
"pse",
+
"tsc",
+
"msr",
+
"pae",
+
"mce",
+
"cx8",
+
"apic",
+
"sep",
+
"mtrr",
+
"pge",
+
"mca",
+
"cmov",
+
"pat",
+
"pse36",
+
"clflush",
+
"mmx",
+
"fxsr",
+
"sse",
+
"sse2",
+
"syscall",
+
"nx",
+
"mmxext",
+
"fxsr_opt",
+
"pdpe1gb",
+
"rdtscp",
+
"lm",
+
"rep_good",
+
"nopl",
+
"xtopology",
+
"cpuid",
+
"extd_apicid",
+
"tsc_known_freq",
+
"pni",
+
"pclmulqdq",
+
"ssse3",
+
"fma",
+
"cx16",
+
"pcid",
+
"sse4_1",
+
"sse4_2",
+
"x2apic",
+
"movbe",
+
"popcnt",
+
"tsc_deadline_timer",
+
"aes",
+
"xsave",
+
"avx",
+
"f16c",
+
"rdrand",
+
"hypervisor",
+
"lahf_lm",
+
"cmp_legacy",
+
"cr8_legacy",
+
"abm",
+
"sse4a",
+
"misalignsse",
+
"3dnowprefetch",
+
"osvw",
+
"topoext",
+
"perfctr_core",
+
"ssbd",
+
"ibrs",
+
"ibpb",
+
"stibp",
+
"ibrs_enhanced",
+
"vmmcall",
+
"fsgsbase",
+
"tsc_adjust",
+
"bmi1",
+
"avx2",
+
"smep",
+
"bmi2",
+
"erms",
+
"invpcid",
+
"avx512f",
+
"avx512dq",
+
"rdseed",
+
"adx",
+
"smap",
+
"avx512ifma",
+
"clflushopt",
+
"clwb",
+
"avx512cd",
+
"sha_ni",
+
"avx512bw",
+
"avx512vl",
+
"xsaveopt",
+
"xsavec",
+
"xgetbv1",
+
"xsaves",
+
"avx_vnni",
+
"avx512_bf16",
+
"clzero",
+
"xsaveerptr",
+
"wbnoinvd",
+
"arat",
+
"avx512vbmi",
+
"umip",
+
"pku",
+
"ospke",
+
"avx512_vbmi2",
+
"gfni",
+
"vaes",
+
"vpclmulqdq",
+
"avx512_vnni",
+
"avx512_bitalg",
+
"avx512_vpopcntdq",
+
"la57",
+
"rdpid",
+
"movdiri",
+
"movdir64b",
+
"fsrm",
+
"avx512_vp2intersect",
+
"flush_l1d",
+
"arch_capabilities"
+
],
+
"bugs": [
+
"sysret_ss_attrs",
+
"spectre_v1",
+
"spectre_v2",
+
"spec_store_bypass",
+
"srso",
+
"ibpb_no_ret",
+
"tsa"
+
],
+
"bogo": 4593.1,
+
"cache": 1024,
+
"physical_id": 1,
+
"siblings": 1,
+
"cores": 1,
+
"fpu": true,
+
"fpu_exception": true,
+
"cpuid_level": 13,
+
"write_protect": false,
+
"tlb_size": 1024,
+
"clflush_size": 64,
+
"cache_alignment": 64,
+
"address_sizes": {
+
"physical": "0x28",
+
"virtual": "0x39"
+
}
+
},
+
{
+
"architecture": "x86_64",
+
"vendor_name": "AuthenticAMD",
+
"family": 25,
+
"model": 17,
+
"stepping": 0,
+
"features": [
+
"fpu",
+
"vme",
+
"de",
+
"pse",
+
"tsc",
+
"msr",
+
"pae",
+
"mce",
+
"cx8",
+
"apic",
+
"sep",
+
"mtrr",
+
"pge",
+
"mca",
+
"cmov",
+
"pat",
+
"pse36",
+
"clflush",
+
"mmx",
+
"fxsr",
+
"sse",
+
"sse2",
+
"syscall",
+
"nx",
+
"mmxext",
+
"fxsr_opt",
+
"pdpe1gb",
+
"rdtscp",
+
"lm",
+
"rep_good",
+
"nopl",
+
"xtopology",
+
"cpuid",
+
"extd_apicid",
+
"tsc_known_freq",
+
"pni",
+
"pclmulqdq",
+
"ssse3",
+
"fma",
+
"cx16",
+
"pcid",
+
"sse4_1",
+
"sse4_2",
+
"x2apic",
+
"movbe",
+
"popcnt",
+
"tsc_deadline_timer",
+
"aes",
+
"xsave",
+
"avx",
+
"f16c",
+
"rdrand",
+
"hypervisor",
+
"lahf_lm",
+
"cmp_legacy",
+
"cr8_legacy",
+
"abm",
+
"sse4a",
+
"misalignsse",
+
"3dnowprefetch",
+
"osvw",
+
"topoext",
+
"perfctr_core",
+
"ssbd",
+
"ibrs",
+
"ibpb",
+
"stibp",
+
"ibrs_enhanced",
+
"vmmcall",
+
"fsgsbase",
+
"tsc_adjust",
+
"bmi1",
+
"avx2",
+
"smep",
+
"bmi2",
+
"erms",
+
"invpcid",
+
"avx512f",
+
"avx512dq",
+
"rdseed",
+
"adx",
+
"smap",
+
"avx512ifma",
+
"clflushopt",
+
"clwb",
+
"avx512cd",
+
"sha_ni",
+
"avx512bw",
+
"avx512vl",
+
"xsaveopt",
+
"xsavec",
+
"xgetbv1",
+
"xsaves",
+
"avx_vnni",
+
"avx512_bf16",
+
"clzero",
+
"xsaveerptr",
+
"wbnoinvd",
+
"arat",
+
"avx512vbmi",
+
"umip",
+
"pku",
+
"ospke",
+
"avx512_vbmi2",
+
"gfni",
+
"vaes",
+
"vpclmulqdq",
+
"avx512_vnni",
+
"avx512_bitalg",
+
"avx512_vpopcntdq",
+
"la57",
+
"rdpid",
+
"movdiri",
+
"movdir64b",
+
"fsrm",
+
"avx512_vp2intersect",
+
"flush_l1d",
+
"arch_capabilities"
+
],
+
"bugs": [
+
"sysret_ss_attrs",
+
"spectre_v1",
+
"spectre_v2",
+
"spec_store_bypass",
+
"srso",
+
"ibpb_no_ret",
+
"tsa"
+
],
+
"bogo": 4593.1,
+
"cache": 1024,
+
"physical_id": 2,
+
"siblings": 1,
+
"cores": 1,
+
"fpu": true,
+
"fpu_exception": true,
+
"cpuid_level": 13,
+
"write_protect": false,
+
"tlb_size": 1024,
+
"clflush_size": 64,
+
"cache_alignment": 64,
+
"address_sizes": {
+
"physical": "0x28",
+
"virtual": "0x39"
+
}
+
},
+
{
+
"architecture": "x86_64",
+
"vendor_name": "AuthenticAMD",
+
"family": 25,
+
"model": 17,
+
"stepping": 0,
+
"features": [
+
"fpu",
+
"vme",
+
"de",
+
"pse",
+
"tsc",
+
"msr",
+
"pae",
+
"mce",
+
"cx8",
+
"apic",
+
"sep",
+
"mtrr",
+
"pge",
+
"mca",
+
"cmov",
+
"pat",
+
"pse36",
+
"clflush",
+
"mmx",
+
"fxsr",
+
"sse",
+
"sse2",
+
"syscall",
+
"nx",
+
"mmxext",
+
"fxsr_opt",
+
"pdpe1gb",
+
"rdtscp",
+
"lm",
+
"rep_good",
+
"nopl",
+
"xtopology",
+
"cpuid",
+
"extd_apicid",
+
"tsc_known_freq",
+
"pni",
+
"pclmulqdq",
+
"ssse3",
+
"fma",
+
"cx16",
+
"pcid",
+
"sse4_1",
+
"sse4_2",
+
"x2apic",
+
"movbe",
+
"popcnt",
+
"tsc_deadline_timer",
+
"aes",
+
"xsave",
+
"avx",
+
"f16c",
+
"rdrand",
+
"hypervisor",
+
"lahf_lm",
+
"cmp_legacy",
+
"cr8_legacy",
+
"abm",
+
"sse4a",
+
"misalignsse",
+
"3dnowprefetch",
+
"osvw",
+
"topoext",
+
"perfctr_core",
+
"ssbd",
+
"ibrs",
+
"ibpb",
+
"stibp",
+
"ibrs_enhanced",
+
"vmmcall",
+
"fsgsbase",
+
"tsc_adjust",
+
"bmi1",
+
"avx2",
+
"smep",
+
"bmi2",
+
"erms",
+
"invpcid",
+
"avx512f",
+
"avx512dq",
+
"rdseed",
+
"adx",
+
"smap",
+
"avx512ifma",
+
"clflushopt",
+
"clwb",
+
"avx512cd",
+
"sha_ni",
+
"avx512bw",
+
"avx512vl",
+
"xsaveopt",
+
"xsavec",
+
"xgetbv1",
+
"xsaves",
+
"avx_vnni",
+
"avx512_bf16",
+
"clzero",
+
"xsaveerptr",
+
"wbnoinvd",
+
"arat",
+
"avx512vbmi",
+
"umip",
+
"pku",
+
"ospke",
+
"avx512_vbmi2",
+
"gfni",
+
"vaes",
+
"vpclmulqdq",
+
"avx512_vnni",
+
"avx512_bitalg",
+
"avx512_vpopcntdq",
+
"la57",
+
"rdpid",
+
"movdiri",
+
"movdir64b",
+
"fsrm",
+
"avx512_vp2intersect",
+
"flush_l1d",
+
"arch_capabilities"
+
],
+
"bugs": [
+
"sysret_ss_attrs",
+
"spectre_v1",
+
"spectre_v2",
+
"spec_store_bypass",
+
"srso",
+
"ibpb_no_ret",
+
"tsa"
+
],
+
"bogo": 4593.1,
+
"cache": 1024,
+
"physical_id": 3,
+
"siblings": 1,
+
"cores": 1,
+
"fpu": true,
+
"fpu_exception": true,
+
"cpuid_level": 13,
+
"write_protect": false,
+
"tlb_size": 1024,
+
"clflush_size": 64,
+
"cache_alignment": 64,
+
"address_sizes": {
+
"physical": "0x28",
+
"virtual": "0x39"
+
}
+
}
+
],
+
"disk": [
+
{
+
"index": 24,
+
"attached_to": 18,
+
"class_list": [
+
"disk",
+
"block_device"
+
],
+
"base_class": {
+
"hex": "0106",
+
"name": "Mass Storage Device",
+
"value": 262
+
},
+
"sub_class": {
+
"hex": "0000",
+
"name": "Disk",
+
"value": 0
+
},
+
"model": "Disk",
+
"sysfs_id": "/class/block/vda",
+
"sysfs_bus_id": "virtio1",
+
"sysfs_device_link": "/devices/pci0000:00/0000:00:10.0/virtio1",
+
"unix_device_name": "/dev/vda",
+
"unix_device_number": {
+
"type": 98,
+
"major": 253,
+
"minor": 0,
+
"range": 16
+
},
+
"unix_device_names": [
+
"/dev/disk/by-path/pci-0000:00:10.0",
+
"/dev/disk/by-path/virtio-pci-0000:00:10.0",
+
"/dev/vda"
+
],
+
"rom_id": "0x80",
+
"resources": [
+
{
+
"type": "disk_geo",
+
"cylinders": 1065220,
+
"heads": 16,
+
"sectors": 63,
+
"size": "0x0",
+
"geo_type": "logical"
+
},
+
{
+
"type": "size",
+
"unit": "sectors",
+
"value_1": 1073741824,
+
"value_2": 512
+
}
+
],
+
"driver": "virtio-pci",
+
"driver_module": "virtio_pci",
+
"drivers": [
+
"virtio-pci",
+
"virtio_blk"
+
],
+
"driver_modules": [
+
"virtio_blk",
+
"virtio_pci"
+
]
+
}
+
],
+
"graphics_card": [
+
{
+
"index": 17,
+
"attached_to": 0,
+
"class_list": [
+
"graphics_card",
+
"pci"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 2
+
},
+
"base_class": {
+
"hex": "0003",
+
"name": "Display controller",
+
"value": 3
+
},
+
"sub_class": {
+
"hex": "0000",
+
"name": "VGA compatible controller",
+
"value": 0
+
},
+
"pci_interface": {
+
"hex": "0000",
+
"name": "VGA",
+
"value": 0
+
},
+
"vendor": {
+
"hex": "1234",
+
"value": 4660
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "1111",
+
"value": 4369
+
},
+
"sub_device": {
+
"hex": "1100",
+
"value": 4352
+
},
+
"revision": {
+
"hex": "0002",
+
"value": 2
+
},
+
"model": "VGA compatible controller",
+
"sysfs_id": "/devices/pci0000:00/0000:00:02.0",
+
"sysfs_bus_id": "0000:00:02.0",
+
"resources": [
+
{
+
"type": "mem",
+
"base": 3221225472,
+
"range": 8388608,
+
"enabled": true,
+
"access": "read_only",
+
"prefetch": "no"
+
},
+
{
+
"type": "mem",
+
"base": 3229888512,
+
"range": 4096,
+
"enabled": true,
+
"access": "read_write",
+
"prefetch": "no"
+
},
+
{
+
"type": "mem",
+
"base": 786432,
+
"range": 131072,
+
"enabled": false,
+
"access": "read_write",
+
"prefetch": "no"
+
}
+
],
+
"detail": {
+
"function": 0,
+
"command": 7,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 0,
+
"prog_if": 0
+
},
+
"driver": "bochs-drm",
+
"driver_module": "bochs",
+
"drivers": [
+
"bochs-drm"
+
],
+
"driver_modules": [
+
"bochs"
+
],
+
"module_alias": "pci:v00001234d00001111sv00001AF4sd00001100bc03sc00i00"
+
}
+
],
+
"hub": [
+
{
+
"index": 25,
+
"attached_to": 9,
+
"class_list": [
+
"usb",
+
"hub"
+
],
+
"bus_type": {
+
"hex": "0086",
+
"name": "USB",
+
"value": 134
+
},
+
"slot": {
+
"bus": 0,
+
"number": 0
+
},
+
"base_class": {
+
"hex": "010a",
+
"name": "Hub",
+
"value": 266
+
},
+
"vendor": {
+
"hex": "1d6b",
+
"name": "Linux 6.12.58 uhci_hcd",
+
"value": 7531
+
},
+
"device": {
+
"hex": "0001",
+
"name": "UHCI Host Controller",
+
"value": 1
+
},
+
"revision": {
+
"hex": "0000",
+
"name": "6.12",
+
"value": 0
+
},
+
"serial": "0000:00:01.2",
+
"model": "Linux 6.12.58 uhci_hcd UHCI Host Controller",
+
"sysfs_id": "/devices/pci0000:00/0000:00:01.2/usb1/1-0:1.0",
+
"sysfs_bus_id": "1-0:1.0",
+
"resources": [
+
{
+
"type": "baud",
+
"speed": 12000000,
+
"bits": 0,
+
"stop_bits": 0,
+
"parity": 0,
+
"handshake": 0
+
}
+
],
+
"detail": {
+
"device_class": {
+
"hex": "0009",
+
"name": "hub",
+
"value": 9
+
},
+
"device_subclass": {
+
"hex": "0000",
+
"name": "per_interface",
+
"value": 0
+
},
+
"device_protocol": 0,
+
"interface_class": {
+
"hex": "0009",
+
"name": "hub",
+
"value": 9
+
},
+
"interface_subclass": {
+
"hex": "0000",
+
"name": "per_interface",
+
"value": 0
+
},
+
"interface_protocol": 0,
+
"interface_number": 0,
+
"interface_alternate_setting": 0
+
},
+
"hotplug": "usb",
+
"driver": "hub",
+
"driver_module": "usbcore",
+
"drivers": [
+
"hub"
+
],
+
"driver_modules": [
+
"usbcore"
+
],
+
"module_alias": "usb:v1D6Bp0001d0612dc09dsc00dp00ic09isc00ip00in00"
+
}
+
],
+
"memory": [
+
{
+
"index": 7,
+
"attached_to": 0,
+
"class_list": [
+
"memory"
+
],
+
"base_class": {
+
"hex": "0101",
+
"name": "Internally Used Class",
+
"value": 257
+
},
+
"sub_class": {
+
"hex": "0002",
+
"name": "Main Memory",
+
"value": 2
+
},
+
"model": "Main Memory",
+
"resources": [
+
{
+
"type": "mem",
+
"base": 0,
+
"range": 8323563520,
+
"enabled": true,
+
"access": "read_write",
+
"prefetch": "unknown"
+
},
+
{
+
"type": "phys_mem",
+
"range": 8589934592
+
}
+
]
+
}
+
],
+
"monitor": [
+
{
+
"index": 22,
+
"attached_to": 17,
+
"class_list": [
+
"monitor"
+
],
+
"base_class": {
+
"hex": "0100",
+
"name": "Monitor",
+
"value": 256
+
},
+
"sub_class": {
+
"hex": "0002",
+
"name": "LCD Monitor",
+
"value": 2
+
},
+
"vendor": {
+
"hex": "4914",
+
"value": 18708
+
},
+
"device": {
+
"hex": "1234",
+
"name": "QEMU Monitor",
+
"value": 4660
+
},
+
"serial": "0",
+
"model": "QEMU Monitor",
+
"resources": [
+
{
+
"type": "monitor",
+
"width": 1024,
+
"height": 768,
+
"vertical_frequency": 60,
+
"interlaced": false
+
},
+
{
+
"type": "monitor",
+
"width": 1280,
+
"height": 800,
+
"vertical_frequency": 60,
+
"interlaced": false
+
},
+
{
+
"type": "monitor",
+
"width": 1600,
+
"height": 1200,
+
"vertical_frequency": 60,
+
"interlaced": false
+
},
+
{
+
"type": "monitor",
+
"width": 1920,
+
"height": 1080,
+
"vertical_frequency": 60,
+
"interlaced": false
+
},
+
{
+
"type": "monitor",
+
"width": 2048,
+
"height": 1152,
+
"vertical_frequency": 60,
+
"interlaced": false
+
},
+
{
+
"type": "monitor",
+
"width": 640,
+
"height": 480,
+
"vertical_frequency": 60,
+
"interlaced": false
+
},
+
{
+
"type": "monitor",
+
"width": 800,
+
"height": 600,
+
"vertical_frequency": 60,
+
"interlaced": false
+
},
+
{
+
"type": "size",
+
"unit": "mm",
+
"value_1": 325,
+
"value_2": 203
+
}
+
],
+
"detail": {
+
"manufacture_year": 2014,
+
"manufacture_week": 42,
+
"vertical_sync": {
+
"min": 50,
+
"max": 125
+
},
+
"horizontal_sync": {
+
"min": 30,
+
"max": 160
+
},
+
"horizontal_sync_timings": {
+
"disp": 1280,
+
"sync_start": 1600,
+
"sync_end": 1638,
+
"total": 1728
+
},
+
"vertical_sync_timings": {
+
"disp": 800,
+
"sync_start": 804,
+
"sync_end": 808,
+
"total": 828
+
},
+
"clock": 107300,
+
"width": 1280,
+
"height": 800,
+
"width_millimetres": 325,
+
"height_millimetres": 203,
+
"horizontal_flag": 45,
+
"vertical_flag": 45,
+
"vendor": "",
+
"name": "QEMU Monitor"
+
},
+
"driver_info": {
+
"type": "display",
+
"width": 2048,
+
"height": 1152,
+
"vertical_sync": {
+
"min": 50,
+
"max": 125
+
},
+
"horizontal_sync": {
+
"min": 30,
+
"max": 160
+
},
+
"bandwidth": 0,
+
"horizontal_sync_timings": {
+
"disp": 1280,
+
"sync_start": 1600,
+
"sync_end": 1638,
+
"total": 1728
+
},
+
"vertical_sync_timings": {
+
"disp": 800,
+
"sync_start": 804,
+
"sync_end": 808,
+
"total": 828
+
},
+
"horizontal_flag": 45,
+
"vertical_flag": 45
+
}
+
}
+
],
+
"mouse": [
+
{
+
"index": 26,
+
"attached_to": 25,
+
"class_list": [
+
"mouse",
+
"usb"
+
],
+
"bus_type": {
+
"hex": "0086",
+
"name": "USB",
+
"value": 134
+
},
+
"slot": {
+
"bus": 0,
+
"number": 0
+
},
+
"base_class": {
+
"hex": "0105",
+
"name": "Mouse",
+
"value": 261
+
},
+
"sub_class": {
+
"hex": "0003",
+
"name": "USB Mouse",
+
"value": 3
+
},
+
"vendor": {
+
"hex": "0627",
+
"name": "QEMU",
+
"value": 1575
+
},
+
"device": {
+
"hex": "0001",
+
"name": "QEMU USB Tablet",
+
"value": 1
+
},
+
"serial": "28754-0000:00:01.2-1",
+
"compat_vendor": "Unknown",
+
"compat_device": "Generic USB Mouse",
+
"model": "QEMU USB Tablet",
+
"sysfs_id": "/devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0",
+
"sysfs_bus_id": "1-1:1.0",
+
"unix_device_name": "/dev/input/mice",
+
"unix_device_number": {
+
"type": 99,
+
"major": 13,
+
"minor": 63,
+
"range": 1
+
},
+
"unix_device_names": [
+
"/dev/input/mice"
+
],
+
"unix_device_name2": "/dev/input/mouse0",
+
"unix_device_number2": {
+
"type": 99,
+
"major": 13,
+
"minor": 32,
+
"range": 1
+
},
+
"resources": [
+
{
+
"type": "baud",
+
"speed": 12000000,
+
"bits": 0,
+
"stop_bits": 0,
+
"parity": 0,
+
"handshake": 0
+
}
+
],
+
"detail": {
+
"device_class": {
+
"hex": "0000",
+
"name": "per_interface",
+
"value": 0
+
},
+
"device_subclass": {
+
"hex": "0000",
+
"name": "per_interface",
+
"value": 0
+
},
+
"device_protocol": 0,
+
"interface_class": {
+
"hex": "0003",
+
"name": "hid",
+
"value": 3
+
},
+
"interface_subclass": {
+
"hex": "0000",
+
"name": "per_interface",
+
"value": 0
+
},
+
"interface_protocol": 0,
+
"interface_number": 0,
+
"interface_alternate_setting": 0
+
},
+
"hotplug": "usb",
+
"driver": "usbhid",
+
"driver_module": "usbhid",
+
"drivers": [
+
"usbhid"
+
],
+
"driver_modules": [
+
"usbhid"
+
],
+
"driver_info": {
+
"type": "mouse",
+
"db_entry_0": [
+
"explorerps/2",
+
"exps2"
+
],
+
"xf86": "explorerps/2",
+
"gpm": "exps2",
+
"buttons": -1,
+
"wheels": -1
+
},
+
"module_alias": "usb:v0627p0001d0000dc00dsc00dp00ic03isc00ip00in00"
+
}
+
],
+
"network_controller": [
+
{
+
"index": 20,
+
"attached_to": 15,
+
"class_list": [
+
"network_controller"
+
],
+
"bus_type": {
+
"hex": "008f",
+
"name": "Virtio",
+
"value": 143
+
},
+
"slot": {
+
"bus": 0,
+
"number": 0
+
},
+
"base_class": {
+
"hex": "0002",
+
"name": "Network controller",
+
"value": 2
+
},
+
"sub_class": {
+
"hex": "0000",
+
"name": "Ethernet controller",
+
"value": 0
+
},
+
"vendor": "Virtio",
+
"device": "Ethernet Card 0",
+
"model": "Virtio Ethernet Card 0",
+
"sysfs_id": "/devices/pci0000:00/0000:00:03.0/virtio0",
+
"sysfs_bus_id": "virtio0",
+
"unix_device_name": "ens3",
+
"unix_device_names": [
+
"ens3"
+
],
+
"resources": [
+
{
+
"type": "hwaddr",
+
"address": 50
+
},
+
{
+
"type": "phwaddr",
+
"address": 50
+
}
+
],
+
"driver": "virtio_net",
+
"driver_module": "virtio_net",
+
"drivers": [
+
"virtio_net"
+
],
+
"driver_modules": [
+
"virtio_net"
+
],
+
"module_alias": "virtio:d00000001v00001AF4"
+
}
+
],
+
"network_interface": [
+
{
+
"index": 27,
+
"attached_to": 0,
+
"class_list": [
+
"network_interface"
+
],
+
"base_class": {
+
"hex": "0107",
+
"name": "Network Interface",
+
"value": 263
+
},
+
"sub_class": {
+
"hex": "0000",
+
"name": "Loopback",
+
"value": 0
+
},
+
"model": "Loopback network interface",
+
"sysfs_id": "/class/net/lo",
+
"unix_device_name": "lo",
+
"unix_device_names": [
+
"lo"
+
]
+
},
+
{
+
"index": 28,
+
"attached_to": 20,
+
"class_list": [
+
"network_interface"
+
],
+
"base_class": {
+
"hex": "0107",
+
"name": "Network Interface",
+
"value": 263
+
},
+
"sub_class": {
+
"hex": "0001",
+
"name": "Ethernet",
+
"value": 1
+
},
+
"model": "Ethernet network interface",
+
"sysfs_id": "/class/net/ens3",
+
"sysfs_device_link": "/devices/pci0000:00/0000:00:03.0/virtio0",
+
"unix_device_name": "ens3",
+
"unix_device_names": [
+
"ens3"
+
],
+
"resources": [
+
{
+
"type": "hwaddr",
+
"address": 50
+
},
+
{
+
"type": "phwaddr",
+
"address": 50
+
}
+
],
+
"driver": "virtio_net",
+
"driver_module": "virtio_net",
+
"drivers": [
+
"virtio_net"
+
],
+
"driver_modules": [
+
"virtio_net"
+
]
+
}
+
],
+
"pci": [
+
{
+
"index": 8,
+
"attached_to": 0,
+
"class_list": [
+
"pci",
+
"unknown"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 28
+
},
+
"base_class": {
+
"hex": "0007",
+
"name": "Communication controller",
+
"value": 7
+
},
+
"sub_class": {
+
"hex": "0080",
+
"name": "Communication controller",
+
"value": 128
+
},
+
"vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "1003",
+
"value": 4099
+
},
+
"sub_device": {
+
"hex": "0003",
+
"value": 3
+
},
+
"model": "Communication controller",
+
"sysfs_id": "/devices/pci0000:00/0000:00:1c.0",
+
"sysfs_bus_id": "0000:00:1c.0",
+
"resources": [
+
{
+
"type": "io",
+
"base": 49344,
+
"range": 64,
+
"enabled": true,
+
"access": "read_write"
+
},
+
{
+
"type": "irq",
+
"base": 11,
+
"triggered": 0,
+
"enabled": true
+
},
+
{
+
"type": "mem",
+
"base": 3229876224,
+
"range": 4096,
+
"enabled": true,
+
"access": "read_write",
+
"prefetch": "no"
+
},
+
{
+
"type": "mem",
+
"base": 824633753600,
+
"range": 16384,
+
"enabled": true,
+
"access": "read_only",
+
"prefetch": "no"
+
}
+
],
+
"detail": {
+
"function": 0,
+
"command": 1031,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 11,
+
"prog_if": 0
+
},
+
"driver": "virtio-pci",
+
"driver_module": "virtio_pci",
+
"drivers": [
+
"virtio-pci"
+
],
+
"driver_modules": [
+
"virtio_pci"
+
],
+
"module_alias": "pci:v00001AF4d00001003sv00001AF4sd00000003bc07sc80i00"
+
},
+
{
+
"index": 10,
+
"attached_to": 0,
+
"class_list": [
+
"pci",
+
"unknown"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 16
+
},
+
"base_class": {
+
"hex": "0001",
+
"name": "Mass storage controller",
+
"value": 1
+
},
+
"sub_class": {
+
"hex": "0000",
+
"name": "SCSI storage controller",
+
"value": 0
+
},
+
"vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "1001",
+
"value": 4097
+
},
+
"sub_device": {
+
"hex": "0002",
+
"value": 2
+
},
+
"model": "SCSI storage controller",
+
"sysfs_id": "/devices/pci0000:00/0000:00:10.0",
+
"sysfs_bus_id": "0000:00:10.0",
+
"resources": [
+
{
+
"type": "io",
+
"base": 49152,
+
"range": 128,
+
"enabled": true,
+
"access": "read_write"
+
},
+
{
+
"type": "irq",
+
"base": 11,
+
"triggered": 0,
+
"enabled": true
+
},
+
{
+
"type": "mem",
+
"base": 3229880320,
+
"range": 4096,
+
"enabled": true,
+
"access": "read_write",
+
"prefetch": "no"
+
},
+
{
+
"type": "mem",
+
"base": 824633737216,
+
"range": 16384,
+
"enabled": true,
+
"access": "read_only",
+
"prefetch": "no"
+
}
+
],
+
"detail": {
+
"function": 0,
+
"command": 1031,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 11,
+
"prog_if": 0
+
},
+
"driver": "virtio-pci",
+
"driver_module": "virtio_pci",
+
"drivers": [
+
"virtio-pci"
+
],
+
"driver_modules": [
+
"virtio_pci"
+
],
+
"module_alias": "pci:v00001AF4d00001001sv00001AF4sd00000002bc01sc00i00"
+
},
+
{
+
"index": 12,
+
"attached_to": 0,
+
"class_list": [
+
"pci",
+
"unknown"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 30
+
},
+
"base_class": {
+
"hex": "0000",
+
"name": "Unclassified device",
+
"value": 0
+
},
+
"sub_class": {
+
"hex": "00ff",
+
"value": 255
+
},
+
"vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "1002",
+
"value": 4098
+
},
+
"sub_device": {
+
"hex": "0005",
+
"value": 5
+
},
+
"model": "Unclassified device",
+
"sysfs_id": "/devices/pci0000:00/0000:00:1e.0",
+
"sysfs_bus_id": "0000:00:1e.0",
+
"resources": [
+
{
+
"type": "io",
+
"base": 49280,
+
"range": 64,
+
"enabled": true,
+
"access": "read_write"
+
},
+
{
+
"type": "irq",
+
"base": 10,
+
"triggered": 0,
+
"enabled": true
+
},
+
{
+
"type": "mem",
+
"base": 824633769984,
+
"range": 16384,
+
"enabled": true,
+
"access": "read_only",
+
"prefetch": "no"
+
}
+
],
+
"detail": {
+
"function": 0,
+
"command": 7,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 10,
+
"prog_if": 0
+
},
+
"driver": "virtio-pci",
+
"driver_module": "virtio_pci",
+
"drivers": [
+
"virtio-pci"
+
],
+
"driver_modules": [
+
"virtio_pci"
+
],
+
"module_alias": "pci:v00001AF4d00001002sv00001AF4sd00000005bc00scFFi00"
+
},
+
{
+
"index": 15,
+
"attached_to": 0,
+
"class_list": [
+
"pci",
+
"unknown"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 3
+
},
+
"base_class": {
+
"hex": "0002",
+
"name": "Network controller",
+
"value": 2
+
},
+
"sub_class": {
+
"hex": "0000",
+
"name": "Ethernet controller",
+
"value": 0
+
},
+
"vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "1000",
+
"value": 4096
+
},
+
"sub_device": {
+
"hex": "0001",
+
"value": 1
+
},
+
"model": "Ethernet controller",
+
"sysfs_id": "/devices/pci0000:00/0000:00:03.0",
+
"sysfs_bus_id": "0000:00:03.0",
+
"resources": [
+
{
+
"type": "io",
+
"base": 49408,
+
"range": 64,
+
"enabled": true,
+
"access": "read_write"
+
},
+
{
+
"type": "irq",
+
"base": 10,
+
"triggered": 0,
+
"enabled": true
+
},
+
{
+
"type": "mem",
+
"base": 3229614080,
+
"range": 262144,
+
"enabled": false,
+
"access": "read_only",
+
"prefetch": "no"
+
},
+
{
+
"type": "mem",
+
"base": 3229884416,
+
"range": 4096,
+
"enabled": true,
+
"access": "read_write",
+
"prefetch": "no"
+
},
+
{
+
"type": "mem",
+
"base": 824633720832,
+
"range": 16384,
+
"enabled": true,
+
"access": "read_only",
+
"prefetch": "no"
+
}
+
],
+
"detail": {
+
"function": 0,
+
"command": 1031,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 10,
+
"prog_if": 0
+
},
+
"driver": "virtio-pci",
+
"driver_module": "virtio_pci",
+
"drivers": [
+
"virtio-pci"
+
],
+
"driver_modules": [
+
"virtio_pci"
+
],
+
"module_alias": "pci:v00001AF4d00001000sv00001AF4sd00000001bc02sc00i00"
+
}
+
],
+
"storage_controller": [
+
{
+
"index": 16,
+
"attached_to": 0,
+
"class_list": [
+
"storage_controller",
+
"pci"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 1
+
},
+
"base_class": {
+
"hex": "0001",
+
"name": "Mass storage controller",
+
"value": 1
+
},
+
"sub_class": {
+
"hex": "0001",
+
"name": "IDE interface",
+
"value": 1
+
},
+
"pci_interface": {
+
"hex": "0080",
+
"value": 128
+
},
+
"vendor": {
+
"hex": "8086",
+
"name": "Intel Corporation",
+
"value": 32902
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "7010",
+
"value": 28688
+
},
+
"sub_device": {
+
"hex": "1100",
+
"value": 4352
+
},
+
"model": "Intel IDE interface",
+
"sysfs_id": "/devices/pci0000:00/0000:00:01.1",
+
"sysfs_bus_id": "0000:00:01.1",
+
"resources": [
+
{
+
"type": "io",
+
"base": 1014,
+
"range": 1,
+
"enabled": true,
+
"access": "read_write"
+
},
+
{
+
"type": "io",
+
"base": 368,
+
"range": 8,
+
"enabled": true,
+
"access": "read_write"
+
},
+
{
+
"type": "io",
+
"base": 49504,
+
"range": 16,
+
"enabled": true,
+
"access": "read_write"
+
},
+
{
+
"type": "io",
+
"base": 496,
+
"range": 8,
+
"enabled": true,
+
"access": "read_write"
+
},
+
{
+
"type": "io",
+
"base": 886,
+
"range": 1,
+
"enabled": true,
+
"access": "read_write"
+
}
+
],
+
"detail": {
+
"function": 1,
+
"command": 7,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 0,
+
"prog_if": 128
+
},
+
"driver": "ata_piix",
+
"driver_module": "ata_piix",
+
"drivers": [
+
"ata_piix"
+
],
+
"driver_modules": [
+
"ata_piix"
+
],
+
"module_alias": "pci:v00008086d00007010sv00001AF4sd00001100bc01sc01i80"
+
},
+
{
+
"index": 18,
+
"attached_to": 10,
+
"class_list": [
+
"storage_controller"
+
],
+
"bus_type": {
+
"hex": "008f",
+
"name": "Virtio",
+
"value": 143
+
},
+
"slot": {
+
"bus": 0,
+
"number": 0
+
},
+
"base_class": {
+
"hex": "0001",
+
"name": "Mass storage controller",
+
"value": 1
+
},
+
"sub_class": {
+
"hex": "0080",
+
"name": "Storage controller",
+
"value": 128
+
},
+
"vendor": "Virtio",
+
"device": "Storage 0",
+
"model": "Virtio Storage 0",
+
"sysfs_id": "/devices/pci0000:00/0000:00:10.0/virtio1",
+
"sysfs_bus_id": "virtio1",
+
"driver": "virtio_blk",
+
"driver_module": "virtio_blk",
+
"drivers": [
+
"virtio_blk"
+
],
+
"driver_modules": [
+
"virtio_blk"
+
],
+
"module_alias": "virtio:d00000002v00001AF4"
+
}
+
],
+
"system": {
+
"form_factor": "desktop"
+
},
+
"unknown": [
+
{
+
"index": 19,
+
"attached_to": 8,
+
"class_list": [
+
"unknown"
+
],
+
"base_class": {
+
"hex": "0000",
+
"name": "Unclassified device",
+
"value": 0
+
},
+
"sub_class": {
+
"hex": "0000",
+
"name": "Unclassified device",
+
"value": 0
+
},
+
"vendor": "Virtio",
+
"device": "",
+
"model": "Virtio Unclassified device",
+
"sysfs_id": "/devices/pci0000:00/0000:00:1c.0/virtio2",
+
"sysfs_bus_id": "virtio2",
+
"driver": "virtio_console",
+
"driver_module": "virtio_console",
+
"drivers": [
+
"virtio_console"
+
],
+
"driver_modules": [
+
"virtio_console"
+
],
+
"module_alias": "virtio:d00000003v00001AF4"
+
},
+
{
+
"index": 21,
+
"attached_to": 12,
+
"class_list": [
+
"unknown"
+
],
+
"base_class": {
+
"hex": "0000",
+
"name": "Unclassified device",
+
"value": 0
+
},
+
"sub_class": {
+
"hex": "0000",
+
"name": "Unclassified device",
+
"value": 0
+
},
+
"vendor": "Virtio",
+
"device": "",
+
"model": "Virtio Unclassified device",
+
"sysfs_id": "/devices/pci0000:00/0000:00:1e.0/virtio3",
+
"sysfs_bus_id": "virtio3",
+
"driver": "virtio_balloon",
+
"driver_module": "virtio_balloon",
+
"drivers": [
+
"virtio_balloon"
+
],
+
"driver_modules": [
+
"virtio_balloon"
+
],
+
"module_alias": "virtio:d00000005v00001AF4"
+
}
+
],
+
"usb_controller": [
+
{
+
"index": 9,
+
"attached_to": 0,
+
"class_list": [
+
"usb_controller",
+
"pci"
+
],
+
"bus_type": {
+
"hex": "0004",
+
"name": "PCI",
+
"value": 4
+
},
+
"slot": {
+
"bus": 0,
+
"number": 1
+
},
+
"base_class": {
+
"hex": "000c",
+
"name": "Serial bus controller",
+
"value": 12
+
},
+
"sub_class": {
+
"hex": "0003",
+
"name": "USB Controller",
+
"value": 3
+
},
+
"pci_interface": {
+
"hex": "0000",
+
"name": "UHCI",
+
"value": 0
+
},
+
"vendor": {
+
"hex": "8086",
+
"name": "Intel Corporation",
+
"value": 32902
+
},
+
"sub_vendor": {
+
"hex": "1af4",
+
"value": 6900
+
},
+
"device": {
+
"hex": "7020",
+
"value": 28704
+
},
+
"sub_device": {
+
"hex": "1100",
+
"value": 4352
+
},
+
"revision": {
+
"hex": "0001",
+
"value": 1
+
},
+
"model": "Intel USB Controller",
+
"sysfs_id": "/devices/pci0000:00/0000:00:01.2",
+
"sysfs_bus_id": "0000:00:01.2",
+
"resources": [
+
{
+
"type": "io",
+
"base": 49472,
+
"range": 32,
+
"enabled": true,
+
"access": "read_write"
+
},
+
{
+
"type": "irq",
+
"base": 11,
+
"triggered": 0,
+
"enabled": true
+
}
+
],
+
"detail": {
+
"function": 2,
+
"command": 7,
+
"header_type": 0,
+
"secondary_bus": 0,
+
"irq": 11,
+
"prog_if": 0
+
},
+
"driver": "uhci_hcd",
+
"driver_module": "uhci_hcd",
+
"drivers": [
+
"uhci_hcd"
+
],
+
"driver_modules": [
+
"uhci_hcd"
+
],
+
"driver_info": {
+
"type": "module",
+
"db_entry_0": [
+
"uhci-hcd"
+
],
+
"active": true,
+
"modprobe": true,
+
"names": [
+
"uhci-hcd"
+
],
+
"module_args": [
+
""
+
],
+
"conf": ""
+
},
+
"module_alias": "pci:v00008086d00007020sv00001AF4sd00001100bc0Csc03i00"
+
}
+
]
+
},
+
"smbios": {
+
"bios": {
+
"handle": 0,
+
"vendor": "netcup",
+
"version": "VPS 1000 G12 Pro",
+
"date": "11/28/2025",
+
"features": null,
+
"start_address": "0xe8000",
+
"rom_size": 65536
+
},
+
"chassis": [
+
{
+
"handle": 768,
+
"manufacturer": "QEMU",
+
"version": "pc-i440fx-9.2",
+
"chassis_type": {
+
"hex": "0001",
+
"name": "Other",
+
"value": 1
+
},
+
"lock_present": false,
+
"bootup_state": {
+
"hex": "0003",
+
"name": "Safe",
+
"value": 3
+
},
+
"power_state": {
+
"hex": "0003",
+
"name": "Safe",
+
"value": 3
+
},
+
"thermal_state": {
+
"hex": "0003",
+
"name": "Safe",
+
"value": 3
+
},
+
"security_state": {
+
"hex": "0002",
+
"name": "Unknown",
+
"value": 2
+
},
+
"oem": "0x0"
+
}
+
],
+
"memory_array": [
+
{
+
"handle": 4096,
+
"location": {
+
"hex": "0001",
+
"name": "Other",
+
"value": 1
+
},
+
"usage": {
+
"hex": "0003",
+
"name": "System memory",
+
"value": 3
+
},
+
"ecc": {
+
"hex": "0006",
+
"name": "Multi-bit",
+
"value": 6
+
},
+
"max_size": "0x800000",
+
"error_handle": 65534,
+
"slots": 1
+
}
+
],
+
"memory_array_mapped_address": [
+
{
+
"handle": 4864,
+
"array_handle": 4096,
+
"start_address": "0x0",
+
"end_address": "0xc0000000",
+
"part_width": 1
+
},
+
{
+
"handle": 4865,
+
"array_handle": 4096,
+
"start_address": "0x100000000",
+
"end_address": "0x240000000",
+
"part_width": 1
+
}
+
],
+
"memory_device": [
+
{
+
"handle": 4352,
+
"location": "DIMM 0",
+
"bank_location": "",
+
"manufacturer": "QEMU",
+
"part_number": "",
+
"array_handle": 4096,
+
"error_handle": 65534,
+
"width": 0,
+
"ecc_bits": 0,
+
"size": 8388608,
+
"form_factor": {
+
"hex": "0009",
+
"name": "DIMM",
+
"value": 9
+
},
+
"set": 0,
+
"memory_type": {
+
"hex": "0007",
+
"name": "RAM",
+
"value": 7
+
},
+
"memory_type_details": [
+
"Other"
+
],
+
"speed": 0
+
}
+
],
+
"processor": [
+
{
+
"handle": 1024,
+
"socket": "CPU 0",
+
"socket_type": {
+
"hex": "0001",
+
"name": "Other",
+
"value": 1
+
},
+
"socket_populated": true,
+
"manufacturer": "QEMU",
+
"version": "pc-i440fx-9.2",
+
"part": "",
+
"processor_type": {
+
"hex": "0003",
+
"name": "CPU",
+
"value": 3
+
},
+
"processor_family": {
+
"hex": "00fe",
+
"name": "Other",
+
"value": 254
+
},
+
"processor_status": {
+
"hex": "0001",
+
"name": "Enabled",
+
"value": 1
+
},
+
"clock_ext": 0,
+
"clock_max": 2000,
+
"cache_handle_l1": 0,
+
"cache_handle_l2": 0,
+
"cache_handle_l3": 0
+
},
+
{
+
"handle": 1025,
+
"socket": "CPU 1",
+
"socket_type": {
+
"hex": "0001",
+
"name": "Other",
+
"value": 1
+
},
+
"socket_populated": true,
+
"manufacturer": "QEMU",
+
"version": "pc-i440fx-9.2",
+
"part": "",
+
"processor_type": {
+
"hex": "0003",
+
"name": "CPU",
+
"value": 3
+
},
+
"processor_family": {
+
"hex": "00fe",
+
"name": "Other",
+
"value": 254
+
},
+
"processor_status": {
+
"hex": "0001",
+
"name": "Enabled",
+
"value": 1
+
},
+
"clock_ext": 0,
+
"clock_max": 2000,
+
"cache_handle_l1": 0,
+
"cache_handle_l2": 0,
+
"cache_handle_l3": 0
+
},
+
{
+
"handle": 1026,
+
"socket": "CPU 2",
+
"socket_type": {
+
"hex": "0001",
+
"name": "Other",
+
"value": 1
+
},
+
"socket_populated": true,
+
"manufacturer": "QEMU",
+
"version": "pc-i440fx-9.2",
+
"part": "",
+
"processor_type": {
+
"hex": "0003",
+
"name": "CPU",
+
"value": 3
+
},
+
"processor_family": {
+
"hex": "00fe",
+
"name": "Other",
+
"value": 254
+
},
+
"processor_status": {
+
"hex": "0001",
+
"name": "Enabled",
+
"value": 1
+
},
+
"clock_ext": 0,
+
"clock_max": 2000,
+
"cache_handle_l1": 0,
+
"cache_handle_l2": 0,
+
"cache_handle_l3": 0
+
},
+
{
+
"handle": 1027,
+
"socket": "CPU 3",
+
"socket_type": {
+
"hex": "0001",
+
"name": "Other",
+
"value": 1
+
},
+
"socket_populated": true,
+
"manufacturer": "QEMU",
+
"version": "pc-i440fx-9.2",
+
"part": "",
+
"processor_type": {
+
"hex": "0003",
+
"name": "CPU",
+
"value": 3
+
},
+
"processor_family": {
+
"hex": "00fe",
+
"name": "Other",
+
"value": 254
+
},
+
"processor_status": {
+
"hex": "0001",
+
"name": "Enabled",
+
"value": 1
+
},
+
"clock_ext": 0,
+
"clock_max": 2000,
+
"cache_handle_l1": 0,
+
"cache_handle_l2": 0,
+
"cache_handle_l3": 0
+
}
+
],
+
"system": {
+
"handle": 256,
+
"manufacturer": "netcup",
+
"product": "KVM Server",
+
"version": "VPS 1000 G12 Pro",
+
"wake_up": {
+
"hex": "0006",
+
"name": "Power Switch",
+
"value": 6
+
}
+
}
+
}
+
}
+7
hosts/trimounts/modules/ssh.nix
···
+
{
+
services.fail2ban.enable = true;
+
services.openssh = {
+
enable = true;
+
settings.PasswordAuthentication = false;
+
};
+
}
+9
hosts/trimounts/modules/tailscale.nix
···
+
{ ... }:
+
{
+
imports = [ ../../../modules/network/tailscale.nix ];
+
+
services.tailscale = {
+
extraSetFlags = [ "--advertise-exit-node" ];
+
useRoutingFeatures = "both";
+
};
+
}
-1
modules/network/ssh.nix
···
enable = true;
challengeResponseAuthentication = false;
passwordAuthentication = false;
-
forwardX11 = true;
};
}
+1
modules/nushell/prompt.nu
···
"sd-148036": {start: "0x595CFF", end: "0xC6F8FF"},
dzwonek: {start: "0x595CFF", end: "0xC6F8FF"},
volsinii: {start: "0x595CFF", end: "0xC6F8FF"},
+
trimounts: {start: "0x533A71", end: "0xFE5F55"},
}
let user_colors = {
kirara: {start: "0xFF407D", end: "0xEE99C2"},