74 lines
2.4 KiB
Nix
74 lines
2.4 KiB
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home.username = "joshuaelm";
|
|
home.homeDirectory = "/home/joshuaelm";
|
|
|
|
imports = [ ../../modules/nvim ../../modules/stylix.nix ../../modules/hypr ../../modules/ashell ../../modules/waybar/waybar.nix ../../modules/zen ../../modules/rofi ../../modules/kitty ../../modules/cava ../../modules/starship ../../modules/fuzzel ../../modules/nushell ];
|
|
|
|
|
|
home.packages = [
|
|
pkgs.element-desktop
|
|
pkgs.signal-desktop-bin
|
|
pkgs.swaybg
|
|
pkgs.gpu-screen-recorder
|
|
pkgs.gpu-screen-recorder-gtk
|
|
pkgs.supersonic
|
|
pkgs.adw-gtk3
|
|
];
|
|
|
|
programs.hyprlock.enable = true;
|
|
programs.starship.enable = true;
|
|
programs.starship.enableFishIntegration = true;
|
|
programs.cava.enable = true;
|
|
programs.btop.enable = true;
|
|
services.hyprpaper.enable = true;
|
|
home.shell.enableFishIntegration = true;
|
|
|
|
home.file.".icons/default".source = "${pkgs.bibata-cursors}/share/icons/Bibata-Modern-Classic";
|
|
|
|
services.mpd-mpris.enable = true;
|
|
|
|
# This value determines the Home Manager release that your
|
|
# configuration is compatible with. This helps avoid breakage
|
|
# when a new Home Manager release introduces backwards
|
|
# incompatible changes.
|
|
#
|
|
# You can update Home Manager without changing this value. See
|
|
# the Home Manager release notes for a list of state version
|
|
# changes in each release.
|
|
home.stateVersion = "23.11";
|
|
xdg.dataFile = {
|
|
"Steam/compatibilitytools.d/SteamTinkerLaunch/compatibilitytool.vdf".text = ''
|
|
"compatibilitytools"
|
|
{
|
|
"compat_tools"
|
|
{
|
|
"Proton-stl" // Internal name of this tool
|
|
{
|
|
"install_path" "."
|
|
"display_name" "Steam Tinker Launch"
|
|
|
|
"from_oslist" "windows"
|
|
"to_oslist" "linux"
|
|
}
|
|
}
|
|
}
|
|
'';
|
|
"Steam/compatibilitytools.d/SteamTinkerLaunch/steamtinkerlaunch".source =
|
|
config.lib.file.mkOutOfStoreSymlink "${pkgs.steamtinkerlaunch}/bin/steamtinkerlaunch";
|
|
"Steam/compatibilitytools.d/SteamTinkerLaunch/toolmanifest.vdf".text = ''
|
|
"manifest"
|
|
{
|
|
"commandline" "/steamtinkerlaunch run"
|
|
"commandline_waitforexitandrun" "/steamtinkerlaunch waitforexitandrun"
|
|
}
|
|
'';
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
}
|