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 = [
|
2023-03-07 16:03:15 -05:00
|
|
|
../../home
|
2023-04-03 07:29:35 -04:00
|
|
|
../../home/librewolf
|
2023-03-07 16:03:15 -05:00
|
|
|
../../home/wezterm
|
|
|
|
../../home/zathura
|
|
|
|
../../home/gtk
|
|
|
|
../../home/dunst
|
|
|
|
../../home/lf
|
2023-03-11 19:28:31 -05:00
|
|
|
../../home/zellij
|
2023-03-07 16:03:15 -05:00
|
|
|
../../home/mpv
|
|
|
|
../../home/waybar
|
|
|
|
../../home/wayland/hyprland
|
2023-03-26 06:12:19 -04:00
|
|
|
../../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-03-26 06:12:19 -04:00
|
|
|
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
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|