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

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
{
imports = [
@ -6,6 +6,21 @@
./home-julien.nix
];
machine.meta = {
arch = "aarch64-linux";
nixpkgs_version = inputs.nixpkgs;
hm_version = inputs.home-manager;
ipv4 = {
public = "141.145.197.219";
vpn = "100.100.45.13";
};
ipv6 = {
public = "2603:c027:c001:89aa:aad9:34b3:f3c9:924f";
vpn = "fd7a:115c:a1e0::d";
};
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;