Compare commits
2 commits
9592300a09
...
2542722888
| Author | SHA1 | Date | |
|---|---|---|---|
| 2542722888 | |||
| 51f3854609 |
4 changed files with 31 additions and 0 deletions
|
|
@ -5,6 +5,7 @@
|
||||||
./kate.nix
|
./kate.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./skanpage.nix
|
./skanpage.nix
|
||||||
|
./neochat.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable the kde partition manager
|
# Enable the kde partition manager
|
||||||
|
|
|
||||||
7
roles/kde/programs/neochat.nix
Normal file
7
roles/kde/programs/neochat.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home-manager.users.toast = {
|
||||||
|
home.packages = [ pkgs.neochat ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./virtualbox.nix
|
./virtualbox.nix
|
||||||
./idea.nix
|
./idea.nix
|
||||||
|
./webstorm.nix
|
||||||
./vscode.nix
|
./vscode.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
22
roles/school/programs/webstorm.nix
Normal file
22
roles/school/programs/webstorm.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
with pkgs;
|
||||||
|
{
|
||||||
|
|
||||||
|
home-manager.users.toast = {
|
||||||
|
home = {
|
||||||
|
packages = [ jetbrains.webstorm ];
|
||||||
|
# Install plugins
|
||||||
|
file = {
|
||||||
|
".local/share/JetBrains/WebStorm2023.2/catppuccin.jar".source = fetchurl {
|
||||||
|
url = "https://github.com/catppuccin/jetbrains/releases/download/v3.2.1/Catppuccin.Theme-3.2.1.jar";
|
||||||
|
hash = "sha256-vE3Tv/dNfWyRuBJXLDPmtY1GnLShqM+dJR5rltXYdOY=";
|
||||||
|
};
|
||||||
|
".local/share/JetBrains/WebStorm2023.2/rainbow-brackets".source = fetchzip {
|
||||||
|
url = "https://github.com/izhangzhihao/intellij-rainbow-brackets/releases/download/2023.3.7/intellij-rainbow-brackets-2023.3.7.zip";
|
||||||
|
hash = "sha256-szgyQs3iCge9rI274PA29i+tprPE11xpyJqiccedp6A=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue