nixos-config/home-manager/stvnliu/home.nix

92 lines
1.9 KiB
Nix

{
inputs,
lib,
config,
pkgs,
...
}: {
imports = [
./hypr
./shells
../../common/variables.nix
./mako.nix
./wechat
./editors.nix
./gtk.nix
./ags
./xdg.nix
./stylix.nix
./spicetify.nix
./scripts
./programs
./packages
];
nixpkgs = {
# You can add overlays here
overlays = [
(final: prev: {
ags = prev.ags.overrideAttrs (old: {
buildInputs = old.buildInputs ++ [pkgs.libdbusmenu-gtk3];
});
})
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
# Workaround for https://github.com/nix-community/home-manager/issues/2942
allowUnfreePredicate = _: true;
};
};
home = {
username = "${config.myUserName}";
homeDirectory = "/home/${config.myUserName}";
# copy wallpaper from assets
file = {"wallpaper.jpg".source = config.myWallPaperPath;};
};
home.packages = with pkgs; [
prismlauncher
protonvpn-gui
devenv
vlc
zed-editor
rhythmbox
qq
shotwell
mpv
kdenlive
obsidian
pcmanfm
udiskie
teams-for-linux
sxiv
heroic
];
myAutostartCommands = [
#"${pkgs.clash-verge-rev}/bin/clash-verge"
"${config.programs.firefox.package}/bin/firefox"
"${pkgs.thunderbird}/bin/thunderbird"
];
programs = {
obs-studio = {
enable = true;
plugins = [pkgs.obs-studio-plugins.wlrobs];
};
home-manager.enable = true;
firefox = {
enable = true;
package = pkgs.firefox-devedition;
};
thunderbird = {
enable = true;
profiles.default = {isDefault = true;};
};
};
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "24.05";
}