Skip to content

Commit

Permalink
problems need to be fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tanneberger committed Dec 11, 2024
1 parent e191185 commit cc0c3dc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
5 changes: 1 addition & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,7 @@
# here we evaluate over all nixos configurations making this extremely slow
apps."x86_64-linux" = (import ./pkgs/deployment.nix { inherit self pkgs lib; });

nixosConfigurations = lib.attrsets.mapAttrs
(name: value:
(if (name == "notice-me-senpai") then (nixpkgs-2311.lib.nixosSystem value) else (nixpkgs.lib.nixosSystem value)))
unevaluatedNixosConfigurations;
nixosConfigurations = lib.attrsets.mapAttrs (name: value: (nixpkgs.lib.nixosSystem value)) unevaluatedNixosConfigurations;

hydraJobs =
let
Expand Down
3 changes: 1 addition & 2 deletions hardware/tetra-zw.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,13 @@
# Enable OpenCL
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
extraPackages = with pkgs; [
rocmPackages.clr.icd
rocmPackages.clr
rocmPackages.rocminfo
rocmPackages.rocm-runtime
rocm-opencl-icd
#rocm-opencl-icd
rocmPackages.rocm-smi
];
};
Expand Down
2 changes: 1 addition & 1 deletion hosts/notice-me-senpai/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let
in
{
imports = [
./grafana.nix
#./grafana.nix
];
microvm = {
vcpu = 4;
Expand Down
2 changes: 1 addition & 1 deletion hosts/uranus/stateful-jupyter.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ in
storageDriver = "devicemapper";
extraOptions = "--storage-opt dm.basesize=40G --storage-opt dm.fs=xfs";
};
systemd.enableUnifiedCgroupHierarchy = false;
#systemd.enableUnifiedCgroupHierarchy = false;

# user to run the thing
# jupyterlab container
Expand Down
2 changes: 1 addition & 1 deletion modules/TLMS/base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let
in
{
nix = {
package = pkgs.nixFlakes;
package = pkgs.nixVersions.latest;
extraOptions = ''
'';
settings = {
Expand Down

0 comments on commit cc0c3dc

Please sign in to comment.