2024-12-08 15:53:54 -05:00

57 lines
904 B
Nix

{ config, pkgs, inputs, ... }:
{
imports = [ ../home/home_common.nix ../home/gnome.nix ../home/sway.nix ../home/hyprland.nix];
nixpkgs.config.allowUnfree = true;
home = {
packages = with pkgs; [
firefox
keepassxc
thunderbird
blender
vesktop
btop
zip
spotify
spicetify-cli
distrobox
direnv
emacs-gtk
syncthing
texliveFull
ispell
];
};
programs = {
direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
};
services = {
syncthing.enable = true;
activitywatch.enable = true;
mpd = {
enable = true;
musicDirectory = "/home/k/Music";
};
emacs = {
enable = true;
defaultEditor = true;
package = pkgs.emacs-gtk;
};
};
stylix = {
enable = true;
autoEnable = true;
};
}