snowflake/hosts/tsuki/home.nix

65 lines
1 KiB
Nix
Raw Normal View History

2023-01-30 06:09:00 -05:00
{
2023-04-14 20:15:12 -04:00
pkgs,
...
}: {
2022-12-16 23:42:46 -05:00
2023-01-30 06:09:00 -05:00
imports = [
../../home
../../home/librewolf
../../home/wezterm
../../home/zathura
../../home/gtk
../../home/dunst
../../home/lf
2023-03-11 19:28:31 -05:00
../../home/zellij
../../home/waybar
../../home/wayland/hyprland
../../modules/swayidle.nix
2023-01-30 06:09:00 -05:00
];
2023-02-27 05:12:00 -05:00
2023-01-30 08:21:33 -05:00
systemd.user.startServices = "sd-switch";
2023-01-30 06:09:00 -05:00
programs.home-manager.enable = true;
2022-12-16 23:42:46 -05:00
2023-01-30 06:09:00 -05:00
home = {
username = "notoh";
homeDirectory = "/home/notoh";
2023-02-27 04:50:24 -05:00
packages = with pkgs; [
2023-04-14 20:15:12 -04:00
(callPackage ../../pkgs/chatterino7 {})
chromium
2023-02-27 04:50:24 -05:00
bitwarden
discord
spotify-player
btop
obs-studio
pavucontrol
unzip
p7zip
virt-manager
imv
2023-04-12 21:39:49 -04:00
mpv
2023-02-27 04:50:24 -05:00
appimage-run
qbittorrent
gdu
cryptomator
ventoy-bin-full
yt-dlp
2023-02-28 06:31:10 -05:00
plex-media-player
2023-02-27 04:50:24 -05:00
wine
lutris
gamemode
gamescope
mangohud
bottles
osu-lazer-bin
runelite
prismlauncher
cbonsai
pipes-rs
cmatrix
cava
hollywood
];
2023-02-27 05:12:00 -05:00
stateVersion = "23.05";
2023-01-30 06:09:00 -05:00
};
}