This commit is contained in:
Annika Merris 2024-05-19 09:08:51 -04:00
parent 44d4f346ab
commit 227cc8e6ce
2 changed files with 3 additions and 2 deletions

View file

@ -7,6 +7,7 @@ with inputs;
inputs.nixpkgs.lib.nixosSystem { inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [ modules = [
globals globals
lix-module.nixosModules.default lix-module.nixosModules.default

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }: { inputs, config, pkgs, lib, ... }:
{ {
options = { options = {
vscode = { vscode = {
@ -15,7 +15,7 @@
enable = true; enable = true;
extensions = with pkgs.vscode-extensions; [ extensions = with pkgs.vscode-extensions; [
bbenoist.nix bbenoist.nix
catpuccin-vsc inputs.catpuccin-vsc
]; ];
}; };
}; };