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-02-01 14:27:09 -05:00
|
|
|
./gtk
|
|
|
|
./wezterm
|
|
|
|
./zathura
|
|
|
|
./nushell
|
|
|
|
./starship
|
|
|
|
./dunst
|
|
|
|
./helix
|
|
|
|
./git
|
2023-02-04 12:38:36 -05:00
|
|
|
./lazygit
|
2023-02-01 15:48:46 -05:00
|
|
|
./lf
|
2023-02-07 21:02:30 -05:00
|
|
|
./mpv
|
2023-02-03 09:58:36 -05:00
|
|
|
./waybar
|
2023-02-04 12:38:36 -05:00
|
|
|
./wayland/hyprland
|
2023-01-30 06:09: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";
|
|
|
|
stateVersion = "23.05";
|
2023-02-27 04:50:24 -05:00
|
|
|
packages = with pkgs; [
|
|
|
|
firefox
|
|
|
|
neofetch
|
|
|
|
bitwarden
|
|
|
|
discord
|
|
|
|
spotify-player
|
|
|
|
btop
|
|
|
|
nvtop
|
|
|
|
obs-studio
|
|
|
|
pavucontrol
|
|
|
|
unzip
|
|
|
|
p7zip
|
|
|
|
virt-manager
|
|
|
|
imv
|
|
|
|
appimage-run
|
|
|
|
qbittorrent
|
|
|
|
gdu
|
|
|
|
cryptomator
|
|
|
|
jetbrains.pycharm-community
|
|
|
|
chromium
|
|
|
|
obsidian
|
|
|
|
ventoy-bin-full
|
|
|
|
yt-dlp
|
|
|
|
wine
|
|
|
|
lutris
|
|
|
|
gamemode
|
|
|
|
gamescope
|
|
|
|
mangohud
|
|
|
|
bottles
|
|
|
|
osu-lazer-bin
|
|
|
|
runelite
|
|
|
|
prismlauncher
|
|
|
|
cbonsai
|
|
|
|
pipes-rs
|
|
|
|
cmatrix
|
|
|
|
cava
|
|
|
|
hollywood
|
|
|
|
];
|
2023-01-30 06:09:00 -05:00
|
|
|
};
|
2022-12-16 23:42:46 -05:00
|
|
|
|
2023-01-30 06:09:00 -05:00
|
|
|
}
|