Use specific packages for PC

This commit is contained in:
thiloho
2023-10-03 17:13:28 +02:00
parent 105629e87a
commit 18c46226a1
2 changed files with 5 additions and 1 deletions

View File

@@ -26,6 +26,7 @@
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
blender blender
chromium
]; ];
stateVersion = "23.05"; stateVersion = "23.05";
}; };

View File

@@ -39,6 +39,10 @@
}; };
}; };
}; };
chromium = {
enable = true;
package = pkgs.google-chrome;
};
vscode = { vscode = {
enable = true; enable = true;
extensions = with pkgs.vscode-extensions; [ extensions = with pkgs.vscode-extensions; [
@@ -82,7 +86,6 @@
discord discord
qbittorrent qbittorrent
neofetch neofetch
google-chrome
]; ];
}; };
}; };