Remove hostname assignment for nixos configurations.
This commit is contained in:
parent
a503ffd70d
commit
892009fb9d
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
# Shameless plug: looking for a way to nixify your themes and make
|
# Shameless plug: looking for a way to nixify your themes and make
|
||||||
# everything match nicely? Try nix-colors!
|
# everything match nicely? Try nix-colors!
|
||||||
# nix-colors.url = "github:misterio77/nix-colors";
|
nix-colors.url = "github:misterio77/nix-colors";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
@ -61,16 +61,16 @@
|
|||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
#Personal laptop, thinkpad t490
|
#Personal laptop, thinkpad t490
|
||||||
athame = nixpkgs.lib.nixosSystem {
|
athame = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs outputs; hostname = "athame";};
|
specialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
# > Our main nixos configuration file <
|
# > Our main nixos configuration file <
|
||||||
./nixos/kde-desktop.nix
|
./nixos/kde-desktop.nix
|
||||||
./nixos/configuration.nix
|
./nixos/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
#Work laptop, dell g15. Nvidia gpu
|
#Work laptop, dell g15.
|
||||||
metatron = nixpkgs.lib.nixosSystem {
|
metatron = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs outputs; hostname = "metatron";};
|
specialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
# > Our main nixos configuration file <
|
# > Our main nixos configuration file <
|
||||||
./nixos/kde-desktop.nix
|
./nixos/kde-desktop.nix
|
||||||
|
Loading…
Reference in New Issue
Block a user