snowflake/hosts/tsuki/home.nix

61 lines
1.1 KiB
Nix
Raw Normal View History

2023-11-15 02:02:05 -05:00
{
inputs,
pkgs,
...
}: {
2023-04-23 17:45:37 -04:00
imports = [
../../home
../../home/wezterm
../../home/zathura
../../home/gtk
2023-06-06 01:12:12 -04:00
../../home/mako
2023-04-23 17:45:37 -04:00
../../home/lf
../../home/zellij
2023-05-28 23:06:18 -04:00
../../home/rofi
2023-06-06 05:09:22 -04:00
../../home/ironbar
2023-06-17 10:38:47 -04:00
../../home/spotify-player
2023-04-23 17:45:37 -04:00
../../home/wayland/hyprland
../../modules/swayidle.nix
];
2022-12-16 23:42:46 -05:00
2023-04-23 17:45:37 -04:00
systemd.user.startServices = "sd-switch";
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-11-11 16:31:28 -05:00
brave
2023-06-02 23:30:30 -04:00
discord
2023-09-05 09:35:42 -04:00
jellyfin-media-player
2023-09-29 13:38:57 -04:00
cinny-desktop
2023-09-24 20:24:08 -04:00
thunderbird
2023-02-27 04:50:24 -05:00
obs-studio
pavucontrol
vscode-fhs
2023-02-27 04:50:24 -05:00
unzip
p7zip
virt-manager
imv
2023-04-12 21:39:49 -04:00
mpv
rustypaste-cli
2023-09-16 18:53:42 -04:00
obsidian
gimp
2023-02-27 04:50:24 -05:00
cryptomator
ventoy-bin-full
wine
lutris
gamemode
mangohud
bottles
runelite
prismlauncher
2023-11-15 02:02:05 -05:00
inputs.nix-gaming.packages.${pkgs.system}.osu-lazer-bin
(libsForQt5.callPackage ../../pkgs/chatterino7 {})
2023-09-05 09:35:42 -04:00
(callPackage ../../pkgs/jellyfin-rpc {})
2023-02-27 04:50:24 -05:00
];
2023-04-23 17:45:37 -04:00
2023-02-27 05:12:00 -05:00
stateVersion = "23.05";
2023-01-30 06:09:00 -05:00
};
2023-04-23 17:45:37 -04:00
}