flake/home/default.nix
2024-08-31 04:01:43 +08:00

37 lines
596 B
Nix

{
lib,
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;
};
home.packages = with pkgs; [
dconf-editor
fastfetch
fd
file-roller
fractal
gnome-calculator
hyperfine
loupe
seahorse
];
}