overlays lol

This commit is contained in:
mjallen18
2026-03-16 14:25:26 -05:00
parent e6c9e21c62
commit 3e232c3474
6 changed files with 11 additions and 21 deletions

6
flake.lock generated
View File

@@ -1516,11 +1516,11 @@
]
},
"locked": {
"lastModified": 1764974171,
"narHash": "sha256-Da9/3xlOzlGHXkUaPYUwwFet3uWjnNlYHNUNBrl0WD4=",
"lastModified": 1773688615,
"narHash": "sha256-s88P2w8pHa2P08/IS7ht/fRRDbr0r3TrgFDY+hIgme0=",
"owner": "mjallen18",
"repo": "snowfall-lib",
"rev": "e4bb3f2fd33b26e512f1d90de4c7197d58e708ad",
"rev": "e426f2244f1a773ad75dc4e078070af0f313e881",
"type": "github"
},
"original": {

View File

@@ -132,6 +132,11 @@
# Nix files to a separate directory.
src = ./.;
overlays = with inputs; [
nix-vscode-extensions.overlays.default
nix-cachyos-kernel.overlays.default
];
# Add a module to a specific host.
systems = {
# common modules
@@ -243,11 +248,6 @@
];
};
};
overlays.nixos = with inputs; [
nix-vscode-extensions.overlays.default
nix-cachyos-kernel.overlays.default
];
};
# Configure Snowfall Lib, all of these settings are optional.

View File

@@ -35,9 +35,6 @@
# Pass inputs so external modules can access them
extraSpecialArgs = {
inherit inputs namespace;
# overlays = with inputs; [
# nix-vscode-extensions.overlays.default
# ];
};
# Make ALL external HM modules available globally

View File

@@ -47,10 +47,10 @@ in
vscode-extensions.redhat.vscode-yaml
vscode-extensions.yy0931.vscode-sqlite3-editor
# nix-vscode-extensions.open-vsx.jeanp413.open-remote-ssh
nix-vscode-extensions.open-vsx.jeanp413.open-remote-ssh
]
++ (if !isArm then x86_only else [ ])
++ (if !isDarwin then [ open-remote-ssh ] else [ ]);
++ (if !isArm then x86_only else [ ]);
# ++ (if !isDarwin then [ open-remote-ssh ] else [ ]);
# ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
# {
# name = "copilot-mcp";

View File

@@ -53,9 +53,6 @@ in
# Pass inputs so external modules can access them
extraSpecialArgs = {
inherit inputs namespace hasDestopEnvironment;
# overlays = with inputs; [
# nix-vscode-extensions.overlays.default
# ];
};
# Make ALL external HM modules available globally

View File

@@ -68,9 +68,5 @@
rocmSupport = lib.mkDefault config.${namespace}.hardware.amd.enable;
allowUnsupportedSystem = true;
};
overlays = with inputs; [
nix-cachyos-kernel.overlays.default
];
};
}