mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-18 18:03:06 +01:00
Jo
e1bbf4856e
refactor: remove some comments feat: set VSCodium color scheme to Catppuccin Macchiato
64 lines
922 B
Nix
64 lines
922 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
namespace,
|
|
...
|
|
}: with lib; with lib.${namespace};
|
|
{
|
|
imports = [
|
|
./apps/gnome.nix
|
|
./apps/vscodium.nix
|
|
];
|
|
|
|
themes.catppuccin.gtk.enable = true;
|
|
|
|
# Flatpak configuration.
|
|
services.flatpak = {
|
|
enable = true;
|
|
update.auto.enable = true;
|
|
uninstallUnmanaged = true;
|
|
|
|
packages = [];
|
|
};
|
|
|
|
# Declare user packages.
|
|
home.packages = with pkgs; [
|
|
### General
|
|
qflipper
|
|
wineWowPackages.waylandFull
|
|
vesktop
|
|
lunar-client
|
|
steam
|
|
g4music
|
|
bitwarden-desktop
|
|
|
|
### Development
|
|
avra
|
|
avrdude
|
|
jetbrains.phpstorm
|
|
jetbrains.pycharm-community
|
|
git
|
|
nodejs_22
|
|
bun
|
|
devenv
|
|
python39
|
|
nil
|
|
zed-editor
|
|
|
|
### Rust development specific
|
|
rustup
|
|
gcc
|
|
|
|
### Work
|
|
teams-for-linux
|
|
enpass
|
|
|
|
### Notes & Organisation
|
|
obsidian
|
|
|
|
### Virtual Reality
|
|
sidequest
|
|
];
|
|
|
|
home.stateVersion = "24.05";
|
|
}
|