Anthony Rodriguez
d0c4c6da05
Using absolute path imports is apparently a horrible idea since that just messes up the store, and will bring a lot of issues since that copies it to the store separately.
10 lines
261 B
Nix
10 lines
261 B
Nix
{inputs, ...}: {
|
|
anastacia = {
|
|
hostname = "2a01:4f8:1c1c:8495::1";
|
|
profiles.system = {
|
|
sshUser = "root";
|
|
user = "root";
|
|
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos inputs.self.nixosConfigurations.anastacia;
|
|
};
|
|
};
|
|
}
|