snowflake/hosts/tsuki/home.nix

64 lines
1,020 B
Nix
Raw Normal View History

2023-01-30 06:09:00 -05:00
{config, pkgs, ...}:
2022-12-16 23:42:46 -05:00
2023-01-30 06:09:00 -05:00
{
2022-12-16 23:42:46 -05:00
2023-01-30 06:09:00 -05:00
imports = [
../../home
../../home/wezterm
../../home/zathura
../../home/gtk
../../home/dunst
../../home/lf
2023-03-11 19:28:31 -05:00
../../home/zellij
../../home/mpv
../../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; [
firefox
chromium
2023-02-27 04:50:24 -05:00
bitwarden
discord
spotify-player
btop
obs-studio
pavucontrol
unzip
p7zip
virt-manager
imv
appimage-run
qbittorrent
gdu
eww-wayland
2023-02-27 04:50:24 -05:00
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
};
}