snowflake/hosts/ame/home.nix
notohh 05583e3c15
All checks were successful
flake check / check (push) Successful in 3m0s
fmt check / check (push) Successful in 38s
home: add libsForQt5 to callPackage
2023-10-25 04:31:35 -04:00

51 lines
907 B
Nix
Executable file

{pkgs, ...}: {
imports = [
../../home
../../home/wezterm
../../home/zathura
../../home/lf
../../home/rofi
../../home/zellij
../../home/mako
../../home/gtk/catppuccin-red.nix
../../home/wayland/river/waybar
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home = {
username = "notoh";
homeDirectory = "/home/notoh";
packages = with pkgs; [
brave
webcord
session-desktop
spotify-player
pavucontrol
unzip
p7zip
imv
mpv
rustypaste-cli
playerctl
logseq
cryptomator
wayland
glib
grim
slurp
swappy
wl-clipboard
wlogout
wlr-randr
swayidle
swaylock-effects
swww
hyprpicker
(libsForQt5.callPackage ../../pkgs/chatterino7 {})
];
stateVersion = "23.05";
};
}