45 lines
759 B
Nix
45 lines
759 B
Nix
{ flake, config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports = with flake.homeModules; [
|
|
base
|
|
git
|
|
];
|
|
|
|
home.stateVersion = "25.05"; # Please read the comment before changing.
|
|
|
|
programs.uv.enable = true;
|
|
|
|
programs.firefox = {
|
|
enable = true;
|
|
nativeMessagingHosts = with pkgs; [ passff-host ];
|
|
};
|
|
|
|
programs.browserpass.enable = true;
|
|
|
|
# The home.packages option allows you to install Nix packages into your
|
|
# environment.
|
|
home.packages = with pkgs; [
|
|
chromium
|
|
docker-compose
|
|
drawing
|
|
hunspell
|
|
hunspellDicts.fr-classique
|
|
# inkscape
|
|
libreoffice-fresh
|
|
vscode
|
|
# nixfmt
|
|
pass-wayland
|
|
pwgen
|
|
# scribus
|
|
|
|
# General development
|
|
# dbeaver-bin
|
|
devenv
|
|
# poetry
|
|
pre-commit
|
|
# nodejs
|
|
];
|
|
|
|
}
|