dotfiles/users/stitchynyan/home.nix

63 lines
946 B
Nix
Raw Normal View History

2023-08-06 09:25:52 -07:00
2024-01-20 17:53:24 -08:00
{ config,
nixosConfig,
pkgs,
inputs,
home-manager,
... }:
2023-08-06 09:57:34 -07:00
{
imports = [
2024-01-20 17:53:24 -08:00
#inputs.nix-index-db.hmModules.nix-index
2023-08-06 09:57:34 -07:00
];
2024-01-20 17:53:24 -08:00
# systemd.user.services.mailsync = {
2023-08-06 09:57:34 -07:00
2024-01-20 17:53:24 -08:00
#}
home.packages = with pkgs; [
cider
prismlauncher
firefox
librewolf
neomutt
dunst
mutt-wizard
cyrus-sasl-xoauth2
pass
isync
msmtp
notmuch
kitty
lynx
playerctl
nheko
hyprpaper
xdg-desktop-portal-hyprland
pavucontrol
slurp
grim
wofi
imv
swaylock-effects
qt5ct
qt6ct
];
#programs.hyprland.enable = true;
# hyprland.homeManagerModules.default
#wayland.windowManager.hyprland.enable = true;
xdg.configFile = {
"hypr" = {
source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/hypr";
recursive = true;
};
};
# Read the Docs before change
home.stateVersion = "23.05";
home.homeDirectory = "/home/stitchynyan";
2023-08-06 09:57:34 -07:00
}