mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-11 04:48:25 -07:00
system archs
This commit is contained in:
parent
2deedbc584
commit
8bf39c45c0
1 changed files with 3 additions and 4 deletions
|
|
@ -28,7 +28,6 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
hmLib = home-manager.lib;
|
||||
primaryUser = "death916";
|
||||
|
||||
|
|
@ -40,7 +39,7 @@
|
|||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
nixos = nixpkgs.lib.nixosSystem {
|
||||
nixos = let system = "x86_64-linux"; in nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = {
|
||||
inherit
|
||||
|
|
@ -69,7 +68,7 @@
|
|||
];
|
||||
};
|
||||
|
||||
homelab = nixpkgs.lib.nixosSystem {
|
||||
homelab = let system = "x86_64-linux"; in nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = {
|
||||
inherit
|
||||
|
|
@ -95,7 +94,7 @@
|
|||
];
|
||||
};
|
||||
|
||||
oracle-proxy = nixpkgs.lib.nixosSystem {
|
||||
oracle-proxy = let system = "x86_64-linux"; in nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
|
||||
specialArgs = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue