snowflake/hosts/tsuki/home.nix

52 lines
951 B
Nix
Raw Normal View History

2023-04-23 17:45:37 -04:00
{pkgs, ...}: {
imports = [
../../home
../../home/librewolf
../../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-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-06-02 23:30:30 -04:00
discord
2023-02-27 04:50:24 -05:00
spotify-player
obs-studio
pavucontrol
unzip
p7zip
virt-manager
imv
2023-04-12 21:39:49 -04:00
mpv
2023-05-29 00:01:03 -04:00
logseq
2023-02-27 04:50:24 -05:00
cryptomator
ventoy-bin-full
wine
lutris
gamemode
gamescope
mangohud
bottles
osu-lazer-bin
runelite
prismlauncher
(callPackage ../../pkgs/chatterino7 {})
(callPackage ../../pkgs/rustypaste-cli {})
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
}