Integrate big data configuration

This commit is contained in:
Filippo Berto 2022-04-17 11:31:43 +02:00
parent 438fcbd661
commit 038bde17f1
2 changed files with 300 additions and 0 deletions

View file

@ -136,6 +136,30 @@
}
];
};
big-data-unstable = unstable.lib.nixosSystem {
inherit system;
modules = [
{ nixpkgs = nixpkgsSettings; }
./odin/hardware-configuration.nix
nixos-hardware.nixosModules.common-cpu-intel
nixos-hardware.nixosModules.common-pc-laptop
nixos-hardware.nixosModules.common-pc-laptop-ssd
./odin/base.nix
./odin/odin-nvidia.nix
./odin/pro_audio.nix
home-manager-unstable.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
# home-manager.nixpkgs.overlays = overlays;
home-manager.users.bertof = import ./odin.nix;
# home-manager.users.bertof.home.packages = [ unstable.hello ];
}
./nixos_modules/big_data.nix
];
};
};
};
}