2024-10-18 17:29:39 -07:00
|
|
|
{
|
2024-10-20 19:17:56 -07:00
|
|
|
system,
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}: {
|
2024-10-18 17:29:39 -07:00
|
|
|
home.username = "marley";
|
|
|
|
home.homeDirectory = "/home/marley";
|
|
|
|
|
2024-10-28 19:24:11 -07:00
|
|
|
home.language.base = "en_US.UTF-8";
|
|
|
|
|
2024-10-18 18:15:55 -07:00
|
|
|
# Tell nix what version it is.
|
|
|
|
nix.package = pkgs.nix;
|
|
|
|
|
2024-10-18 17:49:35 -07:00
|
|
|
# Enable flakes.
|
2024-10-20 19:17:56 -07:00
|
|
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
2024-10-18 17:49:35 -07:00
|
|
|
|
2024-10-25 19:53:54 -07:00
|
|
|
targets.genericLinux.enable = true;
|
|
|
|
|
2024-10-27 19:41:02 -07:00
|
|
|
# Autostart wanted systemd services.
|
|
|
|
systemd.user.startServices = true;
|
|
|
|
|
2024-10-20 21:13:04 -07:00
|
|
|
home.packages = with pkgs; [
|
2024-10-19 09:42:19 -07:00
|
|
|
inputs.alejandra.defaultPackage.${system}
|
2024-10-20 21:13:04 -07:00
|
|
|
just
|
2024-10-20 21:22:41 -07:00
|
|
|
maple-mono-NF
|
2024-10-19 09:42:19 -07:00
|
|
|
];
|
|
|
|
|
2024-10-20 21:22:41 -07:00
|
|
|
fonts.fontconfig.defaultFonts.monospace = "Maple Mono NF";
|
|
|
|
|
2024-10-20 19:17:56 -07:00
|
|
|
imports = [
|
|
|
|
./bat
|
2024-10-20 20:04:59 -07:00
|
|
|
./btop
|
2024-10-20 21:23:03 -07:00
|
|
|
./cava
|
2024-10-26 20:31:39 -07:00
|
|
|
./curl
|
2024-10-29 20:36:39 -07:00
|
|
|
./eza
|
2024-10-28 20:01:16 -07:00
|
|
|
./fish
|
2024-10-25 16:36:01 -07:00
|
|
|
./gh
|
2024-10-26 20:50:01 -07:00
|
|
|
./hyfetch
|
2024-10-29 21:31:59 -07:00
|
|
|
./less
|
2024-10-29 21:27:57 -07:00
|
|
|
./man
|
2024-10-27 19:36:13 -07:00
|
|
|
./syncthing
|
2024-10-26 20:17:00 -07:00
|
|
|
./wget
|
2024-10-25 19:53:54 -07:00
|
|
|
./xdg
|
2024-10-28 19:24:48 -07:00
|
|
|
./xsession
|
2024-10-26 21:02:53 -07:00
|
|
|
./zathura
|
2024-10-29 21:33:11 -07:00
|
|
|
./zoxide
|
2024-10-20 19:17:56 -07:00
|
|
|
];
|
|
|
|
|
2024-10-18 17:29:39 -07:00
|
|
|
# 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 should not change this value, even if you update Home Manager. If you do
|
|
|
|
# want to update the value, then make sure to first check the Home Manager
|
|
|
|
# release notes.
|
|
|
|
home.stateVersion = "24.05"; # Please read the comment before changing.
|
|
|
|
|
|
|
|
# Let home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|