Compare commits
2 commits
772c5de8c1
...
092f8949d5
Author | SHA1 | Date | |
---|---|---|---|
092f8949d5 | |||
9624cdedd6 |
4 changed files with 13 additions and 4 deletions
|
@ -40,6 +40,7 @@ in
|
|||
rust-lang.rust-analyzer
|
||||
hashicorp.terraform
|
||||
svelte.svelte-vscode
|
||||
github.copilot
|
||||
]
|
||||
++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
|
||||
{
|
||||
|
|
|
@ -143,8 +143,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
||||
|
||||
nix = {
|
||||
nixPath = [ "nixpkgs=${inputs.nixpkgs.outPath}" ];
|
||||
registry.nixpkgs.flake = inputs.nixpkgs;
|
||||
};
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
enable = true;
|
||||
install-pycharm = true;
|
||||
install-goland = true;
|
||||
install-webstorm = true;
|
||||
};
|
||||
python = {
|
||||
enable = true;
|
||||
|
|
|
@ -24,6 +24,11 @@ in
|
|||
default = false;
|
||||
example = true;
|
||||
};
|
||||
install-webstorm = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
example = true;
|
||||
};
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages =
|
||||
|
@ -33,7 +38,7 @@ in
|
|||
vscodium
|
||||
]
|
||||
++ 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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue