puzzlevision/homes/x86_64-linux/jo@puzzlevision/default.nix
Jo a5b583f43a feat(puzzlevision): add zen browser and remove firefox
feat: implement super basic Yubikey configuration
2024-12-14 00:45:35 +01:00

69 lines
1.2 KiB
Nix

{
lib,
pkgs,
namespace,
...
}: with lib; with lib.${namespace};
{
imports = [
./apps/gnome.nix
./apps/vscodium.nix
];
themes.catppuccin.gtk.enable = true;
home.file."~/.config/Yubico/u2f_keys".text = ''
jo:gtKwCQKVw5O4IkWg8J8o7vHIo3hStmOqVcnmk97E335DwHnPUMIDTMnD46qEn/1tucTZlYfGABfzVVG+iYeUOA==,fVRFZb9iBiqjOXvk5Gm9ygO/O4huEUR1Uq3DGBlnS1RtqqK0shif8aOlNLkmn8Xe9+x4HYIeNEX4fc8Z7Y2Hgw==,es256,+presence
'';
# 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
bruno
### Rust development specific
rustup
gcc
### Work
teams-for-linux
enpass
### Notes & Organisation
obsidian
### Virtual Reality
sidequest
];
home.stateVersion = "24.05";
}