64 lines
853 B
Nix
64 lines
853 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../home/home_common.nix
|
|
../home/hyprland.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
firefox
|
|
keepassxc
|
|
thunderbird
|
|
blender
|
|
vesktop
|
|
spotify
|
|
|
|
btop
|
|
zip
|
|
emacs-gtk
|
|
|
|
prismlauncher
|
|
steam
|
|
gamescope
|
|
|
|
direnv
|
|
texliveFull
|
|
ispell
|
|
];
|
|
};
|
|
|
|
programs = {
|
|
direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
};
|
|
|
|
services = {
|
|
syncthing.enable = true;
|
|
|
|
mpd = {
|
|
enable = true;
|
|
musicDirectory = "/home/k/Music";
|
|
};
|
|
|
|
emacs = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
package = pkgs.emacs-pgtk;
|
|
};
|
|
};
|
|
stylix = {
|
|
enable = true;
|
|
autoEnable = true;
|
|
};
|
|
}
|