config/users/natalie/desktop/home.nix

63 lines
1.1 KiB
Nix
Raw Normal View History

2023-12-28 21:33:09 -08:00
{
2024-01-27 22:26:23 -08:00
inputs,
2024-01-05 21:00:41 -08:00
config,
pkgs,
2025-03-28 21:09:28 -07:00
lib,
2025-04-21 16:49:27 -07:00
userSettings,
systemSettings,
2024-01-05 21:00:41 -08:00
...
}: {
2025-04-21 16:49:27 -07:00
imports = [
inputs.nixvim.homeManagerModules.nixvim
#set up nixvim
2025-04-30 12:37:35 -07:00
# ../../modules/nixvim
2025-04-21 16:49:27 -07:00
];
2025-03-28 21:09:28 -07:00
home = {
stateVersion = "23.05"; # Please read the comment before changing.
packages = with pkgs; [
#building macos apps hard :(
ghostty
stremio
julia
qbittorrent
2025-03-31 13:37:38 -07:00
#gaming
bottles
lutris
mangohud
dxvk_2
steam-run
vulkan-tools
path-of-building
wineWowPackages.stable
winetricks
(prismlauncher.override {gamemodeSupport = true;})
2025-03-31 13:37:38 -07:00
#window manager stuff
wofi
xorg.xauth
#linux tools
legcord
pavucontrol
ethtool
grub2
efibootmgr
distrobox
xdg-desktop-portal-gtk
xclip
kdePackages.dolphin
#broken on macos
calibre
mpv
wireguard-tools
signal-desktop
inputs.zls.packages.x86_64-linux.zls
rust-bin.stable.latest.default
];
2025-03-28 21:09:28 -07:00
# programs.mangohud.enable = true;
2025-03-07 16:04:44 -08:00
};
2023-12-28 21:33:09 -08:00
# xdg.mimeApps.defaultApplications."inode/directory" = "dolphin.desktop";
2023-12-28 21:33:09 -08:00
}