refactor file structure
This commit is contained in:
@@ -49,19 +49,19 @@
|
|||||||
freun-dev = nixpkgs.lib.nixosSystem {
|
freun-dev = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [ ./freun.dev ];
|
modules = [ ./hosts/freun.dev ];
|
||||||
};
|
};
|
||||||
|
|
||||||
radish = nixpkgs.lib.nixosSystem {
|
radish = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [ ./radish ];
|
modules = [ ./hosts/radish ];
|
||||||
};
|
};
|
||||||
|
|
||||||
apu = nixpkgs.lib.nixosSystem {
|
apu = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [ ./apu ];
|
modules = [ ./hosts/apu ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -17,6 +17,6 @@ in
|
|||||||
nixos-hardware.nixosModules.framework-13-7040-amd
|
nixos-hardware.nixosModules.framework-13-7040-amd
|
||||||
auto-cpufreq.nixosModules.default
|
auto-cpufreq.nixosModules.default
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
../home
|
../../home
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
{ pkgs, lib, inputs, ... }:
|
{ pkgs, lib, inputs, ... }:
|
||||||
{
|
{
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
nixpkgs.overlays = [ (import ../custom-pkgs { inherit lib inputs; }) ];
|
nixpkgs.overlays = [ (import ../../custom-pkgs { inherit lib inputs; }) ];
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
Reference in New Issue
Block a user