Compare commits

..

No commits in common. "092f8949d569d891a62ad2e1bff1f300e33b69d3" and "772c5de8c1baa455aae46510bbc35df53edd9dee" have entirely different histories.

4 changed files with 4 additions and 13 deletions

View file

@ -40,7 +40,6 @@ in
rust-lang.rust-analyzer
hashicorp.terraform
svelte.svelte-vscode
github.copilot
]
++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
{

View file

@ -143,10 +143,8 @@
};
};
nix = {
nixPath = [ "nixpkgs=${inputs.nixpkgs.outPath}" ];
registry.nixpkgs.flake = inputs.nixpkgs;
};
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;

View file

@ -32,7 +32,6 @@
enable = true;
install-pycharm = true;
install-goland = true;
install-webstorm = true;
};
python = {
enable = true;

View file

@ -24,11 +24,6 @@ in
default = false;
example = true;
};
install-webstorm = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages =
@ -38,7 +33,7 @@ in
vscodium
]
++ lib.optionals cfg.install-pycharm [ pkgs.jetbrains.pycharm-professional ]
++ lib.optionals cfg.install-goland [ pkgs.jetbrains.goland ]
++ lib.optionals cfg.install-webstorm [ pkgs.jetbrains.webstorm ];
++ lib.optionals cfg.install-goland [ pkgs.jetbrains.goland ];
};
}