chore: use meta module

This commit is contained in:
Luj 2024-08-10 17:56:30 +02:00
parent b6480b72ec
commit c451c08f94
Signed by: luj
GPG key ID: 6FC74C847011FD83
11 changed files with 171 additions and 8 deletions

View file

@ -2,6 +2,7 @@
config,
pkgs,
lib,
inputs,
...
}:
@ -11,6 +12,22 @@
./home-julien.nix
];
machine.meta = {
arch = "x86_64-linux";
nixpkgs_version = inputs.nixpkgs;
hm_version = inputs.home-manager;
ipv4 = {
public = "82.67.34.230";
local = "192.168.0.175";
vpn = "100.100.45.14";
};
ipv6 = {
public = "2a01:e0a:de4:a0e1:40f0:8cff:fe31:3e94";
vpn = "fd7a:115c:a1e0::e";
};
};
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;