Guanran Wang
67b0b91e70
no more qt5 >:) Version 256 -> 257: mumble: 1.5.634, 1.5.634-fish → 1.5.634-unstable-2024-10-05, 1.5.634-unstable-2024-10-05-fish, -174.6 KiB qtbase: 5.15.14 → ∅, -46431.0 KiB qtdeclarative: 5.15.14 → ∅, -21670.9 KiB qtquickcontrols: 5.15.14 → ∅, -5387.2 KiB qtsvg: 5.15.14 → ∅, -568.6 KiB qttools: 5.15.14 → ∅, -11973.5 KiB qttranslations: 5.15.14 → ∅, -15127.5 KiB qtwayland: 5.15.14 → ∅, -6992.5 KiB
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
home = {
|
|
username = "guanranwang";
|
|
homeDirectory = "/home/guanranwang";
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
imports = [
|
|
./theme.nix
|
|
./xdg-mime.nix
|
|
] ++ lib.filter (x: lib.hasSuffix "default.nix" x) (lib.fileset.toList ./applications);
|
|
|
|
programs = {
|
|
jq.enable = true;
|
|
obs-studio.enable = true;
|
|
ripgrep.enable = true;
|
|
skim.enable = true;
|
|
zoxide.enable = true;
|
|
mangohud.enable = true;
|
|
};
|
|
|
|
services = {
|
|
cliphist.enable = true;
|
|
udiskie.enable = true;
|
|
};
|
|
|
|
home.packages =
|
|
(with pkgs; [
|
|
dconf-editor
|
|
fastfetch
|
|
fd
|
|
file-roller
|
|
fractal
|
|
gnome-calculator
|
|
hyperfine
|
|
libnotify
|
|
loupe
|
|
pwvucontrol
|
|
seahorse
|
|
wl-clipboard
|
|
|
|
osu-lazer-bin
|
|
prismlauncher
|
|
])
|
|
++ (with inputs.self.legacyPackages.${pkgs.stdenv.hostPlatform.system}; [
|
|
mumble-git
|
|
]);
|
|
|
|
home.sessionVariables = {
|
|
# https://github.com/ppy/osu-framework/pull/6292
|
|
"OSU_SDL3" = "1";
|
|
"SDL_VIDEO_DRIVER" = "wayland";
|
|
};
|
|
}
|