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 rust-lang.rust-analyzer
hashicorp.terraform hashicorp.terraform
svelte.svelte-vscode svelte.svelte-vscode
github.copilot
] ]
++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [ ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
{ {

View file

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

View file

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

View file

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