changend names of systems
This commit is contained in:
parent
ce8383f6b6
commit
7b0b8220a2
10 changed files with 14 additions and 9 deletions
|
@ -4,7 +4,7 @@
|
|||
./options.nix
|
||||
];
|
||||
|
||||
networking.hostName = "surface";
|
||||
networking.hostName = "akarso";
|
||||
|
||||
# Add user to surface control group for surface linux
|
||||
users.users.twoneis.extraGroups = [ "surface-control" ];
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
boot.kernelPackages = pkgs.linuxPackages_zen;
|
||||
|
||||
networking.hostName = "zotac-mini";
|
||||
networking.hostName = "creosote";
|
||||
|
||||
boot.loader = {
|
||||
systemd-boot = {
|
|
@ -5,7 +5,7 @@
|
|||
./options.nix
|
||||
];
|
||||
|
||||
networking.hostName = "desktop";
|
||||
networking.hostName = "ellaca";
|
||||
|
||||
# Select kernel version
|
||||
boot.kernelPackages = pkgs.linuxPackages_zen;
|
17
outputs.nix
17
outputs.nix
|
@ -30,34 +30,39 @@
|
|||
];
|
||||
|
||||
in {
|
||||
desktop = nixpkgs.lib.nixosSystem {
|
||||
# AMD Ryzen 5600X
|
||||
# nvidia GeForce GTX 1060 (6GB)
|
||||
ellaca = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
./devices/desktop
|
||||
./devices/ellaca
|
||||
] ++ clientModules;
|
||||
};
|
||||
|
||||
surface = nixpkgs.lib.nixosSystem {
|
||||
# Surface Pro 7 (i5 128GB)
|
||||
akarso = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
./devices/surface
|
||||
./devices/akarso
|
||||
nixos-hardware.nixosModules.microsoft-surface-pro-intel
|
||||
] ++ 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";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
./devices/zotac-mini
|
||||
./devices/creosote
|
||||
] ++ serverModules;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue