refactor: remove unnecessary system specialArg

This commit is contained in:
Youwen Wu 2024-08-26 01:47:06 -07:00
parent b1201b90cb
commit dd5715083a
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
3 changed files with 4 additions and 7 deletions

View file

@ -85,7 +85,6 @@
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
system = "x86_64-linux";
}; };
modules = [ modules = [
./hosts/demeter ./hosts/demeter
@ -95,7 +94,6 @@
callisto = nixpkgs.lib.nixosSystem { callisto = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
system = "aarch64-linux";
}; };
modules = [ modules = [
./hosts/callisto ./hosts/callisto
@ -104,7 +102,6 @@
adrastea = nixpkgs.lib.nixosSystem { adrastea = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
system = "x86_64-linux";
}; };
modules = [ modules = [
./hosts/adrastea ./hosts/adrastea

View file

@ -1,8 +1,8 @@
{ {
inputs, inputs,
system, pkgs,
... ...
}: { }: {
wayland.windowManager.hyprland.settings.monitor = ["DP-1,2560x1440@165,1920x0,auto" "HDMI-A-1,1920x1080@60,0x0,1"]; wayland.windowManager.hyprland.settings.monitor = ["DP-1,2560x1440@165,1920x0,auto" "HDMI-A-1,1920x1080@60,0x0,1"];
wayland.windowManager.hyprland.package = inputs.stablepkgs.legacyPackages.${system}.hyprland; wayland.windowManager.hyprland.package = inputs.stablepkgs.legacyPackages.${pkgs.system}.hyprland;
} }

View file

@ -1,10 +1,10 @@
{ {
inputs, inputs,
system, pkgs,
... ...
}: { }: {
environment.systemPackages = [ environment.systemPackages = [
inputs.personal-neovim.packages.${system}.default inputs.personal-neovim.packages.${pkgs.system}.default
]; ];
security.sudo.enable = false; security.sudo.enable = false;