changend names of systems

This commit is contained in:
twoneis 2024-04-26 14:47:33 +02:00
parent ce8383f6b6
commit 7b0b8220a2
10 changed files with 14 additions and 9 deletions

View file

@ -4,7 +4,7 @@
./options.nix ./options.nix
]; ];
networking.hostName = "surface"; networking.hostName = "akarso";
# Add user to surface control group for surface linux # Add user to surface control group for surface linux
users.users.twoneis.extraGroups = [ "surface-control" ]; users.users.twoneis.extraGroups = [ "surface-control" ];

View file

@ -5,7 +5,7 @@
boot.kernelPackages = pkgs.linuxPackages_zen; boot.kernelPackages = pkgs.linuxPackages_zen;
networking.hostName = "zotac-mini"; networking.hostName = "creosote";
boot.loader = { boot.loader = {
systemd-boot = { systemd-boot = {

View file

@ -5,7 +5,7 @@
./options.nix ./options.nix
]; ];
networking.hostName = "desktop"; networking.hostName = "ellaca";
# Select kernel version # Select kernel version
boot.kernelPackages = pkgs.linuxPackages_zen; boot.kernelPackages = pkgs.linuxPackages_zen;

View file

@ -30,34 +30,39 @@
]; ];
in { in {
desktop = nixpkgs.lib.nixosSystem { # AMD Ryzen 5600X
# nvidia GeForce GTX 1060 (6GB)
ellaca = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
}; };
modules = [ modules = [
./devices/desktop ./devices/ellaca
] ++ clientModules; ] ++ clientModules;
}; };
surface = nixpkgs.lib.nixosSystem { # Surface Pro 7 (i5 128GB)
akarso = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
}; };
modules = [ modules = [
./devices/surface ./devices/akarso
nixos-hardware.nixosModules.microsoft-surface-pro-intel nixos-hardware.nixosModules.microsoft-surface-pro-intel
] ++ clientModules; ] ++ clientModules;
}; };
zotac-mini = nixpkgs.lib.nixosSystem { # Zotac Mini
# (Name should be used for an ARM device instead once i get one)
creosote = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
}; };
modules = [ modules = [
./devices/zotac-mini ./devices/creosote
] ++ serverModules; ] ++ serverModules;
}; };
}; };