2024-09-21 17:41:12 -04:00

50 lines
712 B
Nix

{ config, pkgs, inputs, ... }:
{
imports = [
../home/home_common.nix
../home/gnome.nix
];
stylix.enable = true;
nixpkgs.config.allowUnfree = true;
home = {
packages = with pkgs; [
nerdfonts
firefox
keepassxc
thunderbird
blender
vesktop
btop
zip
spotify
distrobox
modrinth-app
direnv
emacs
syncthing
];
};
programs = {
direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
};
services = {
syncthing.enable = true;
activitywatch.enable = true;
emacs = {
enable = true;
defaultEditor = true;
};
};
}