testing the new config before pushing to main

This commit is contained in:
ooks-io 2024-01-19 20:35:26 +13:00
parent c53123d2c5
commit 19afda3c58
4 changed files with 4 additions and 4 deletions

View file

@ -71,15 +71,15 @@
nixosConfigurations = { nixosConfigurations = {
# T480s # T480s
ooks-t480 = lib.nixosSystem { ookst480s = lib.nixosSystem {
modules = [ ./system/hosts/ooks-t480 ]; modules = [ ./system/hosts/ookst480s ];
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
}; };
}; };
homeConfigurations = { homeConfigurations = {
# T480s # T480s
"ooks@ookst480s" = lib.homeManagerConfiguration { "ooks@ookst480s" = lib.homeManagerConfiguration {
modules = [ ./home/user/ooks/t480s ]; modules = [ ./home/user/ooks/ookst480s ];
pkgs = pkgsFor.x86_64-linux; pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; }; extraSpecialArgs = { inherit inputs outputs; };
}; };

View file

@ -16,7 +16,7 @@
}; };
networking = { networking = {
hostName = "ooks-t480"; hostName = "ookst480s";
}; };
boot = { boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_zen; kernelPackages = pkgs.linuxKernel.packages.linux_zen;