add hostname
This commit is contained in:
parent
f83ace1683
commit
2445273822
1 changed files with 15 additions and 0 deletions
15
flake.nix
15
flake.nix
|
@ -62,6 +62,13 @@
|
||||||
./hosts/blackstar/nixos/configuration.nix
|
./hosts/blackstar/nixos/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
rogue = nixpkgs.lib.nixosSystem {
|
||||||
|
specialArgs = {inherit inputs outputs;};
|
||||||
|
modules = [
|
||||||
|
# > Our main nixos configuration file <
|
||||||
|
./hosts/rogue/nixos/configuration.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Standalone home-manager configuration entrypoint
|
# Standalone home-manager configuration entrypoint
|
||||||
|
@ -76,6 +83,14 @@
|
||||||
./hosts/blackstar/home-manager/home.nix
|
./hosts/blackstar/home-manager/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
"aces@rogue" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||||
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
|
modules = [
|
||||||
|
# > Our main home-manager configuration file <
|
||||||
|
./hosts/rogue/home-manager/home.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
Reference in a new issue