Previously, the theme was not enabled in the testbed because there were no existing profiles.
22 lines
403 B
Nix
22 lines
403 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
# We are using VSCodium because VSCode is an unfree package
|
|
let
|
|
package = pkgs.vscodium;
|
|
in
|
|
{
|
|
stylix.testbed.application = {
|
|
enable = true;
|
|
name = "codium";
|
|
inherit package;
|
|
};
|
|
|
|
home-manager.sharedModules = lib.singleton {
|
|
programs.vscode = {
|
|
enable = true;
|
|
inherit package;
|
|
};
|
|
|
|
stylix.targets.vscode.profileNames = [ "default" ];
|
|
};
|
|
}
|