This commit is contained in:
parent
adc5f652de
commit
f5407927cf
8 changed files with 22 additions and 3 deletions
|
@ -11,6 +11,9 @@
|
|||
flatpak.enable = true;
|
||||
jetbrainsToolbox.enable = true;
|
||||
kitty.enable = true;
|
||||
};
|
||||
|
||||
editors = {
|
||||
vscode.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
flatpak.enable = true;
|
||||
jetbrainsToolbox.enable = true;
|
||||
kitty.enable = true;
|
||||
};
|
||||
|
||||
editors = {
|
||||
vscode.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
flatpak.enable = true;
|
||||
jetbrainsToolbox.enable = true;
|
||||
kitty.enable = true;
|
||||
};
|
||||
|
||||
editors = {
|
||||
vscode.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
flatpak.enable = true;
|
||||
jetbrainsToolbox.enable = true;
|
||||
kitty.enable = true;
|
||||
};
|
||||
|
||||
editors = {
|
||||
vscode.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -6,6 +6,5 @@
|
|||
./flatpak
|
||||
./jetbrainsToolbox
|
||||
./kitty
|
||||
./vscode
|
||||
];
|
||||
}
|
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
imports = [
|
||||
./apps
|
||||
./editors
|
||||
./desktop
|
||||
./shell
|
||||
];
|
||||
|
|
7
modules/home/editors/default.nix
Normal file
7
modules/home/editors/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./vscode
|
||||
];
|
||||
}
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.home.apps.vscode;
|
||||
cfg = config.modules.home.editors.vscode;
|
||||
in
|
||||
{
|
||||
options.modules.home.apps.vscode = {
|
||||
options.modules.home.editors.vscode = {
|
||||
enable = mkEnableOption ''
|
||||
Enable vscode with my custom configurations
|
||||
'';
|
Loading…
Reference in a new issue