53 lines
802 B
Nix
53 lines
802 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [ ../home/home_common.nix ../home/gnome.nix ../home/sway.nix ];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
nerdfonts
|
|
firefox
|
|
keepassxc
|
|
thunderbird
|
|
blender
|
|
vesktop
|
|
btop
|
|
zip
|
|
spotify
|
|
spicetify-cli
|
|
distrobox
|
|
|
|
modrinth-app
|
|
direnv
|
|
emacs
|
|
syncthing
|
|
texliveFull
|
|
ispell
|
|
];
|
|
};
|
|
|
|
programs = {
|
|
direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
};
|
|
|
|
services = {
|
|
syncthing.enable = true;
|
|
activitywatch.enable = true;
|
|
emacs = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
};
|
|
};
|
|
stylix = {
|
|
enable = true;
|
|
autoEnable = true;
|
|
};
|
|
|
|
}
|