marleyos/home/default.nix

62 lines
1.3 KiB
Nix
Raw Normal View History

{
system,
pkgs,
inputs,
...
}: {
home.username = "marley";
home.homeDirectory = "/home/marley";
2024-10-28 19:24:11 -07:00
home.language.base = "en_US.UTF-8";
# Tell nix what version it is.
nix.package = pkgs.nix;
2024-10-18 17:49:35 -07:00
# Enable flakes.
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;
# Autostart wanted systemd services.
systemd.user.startServices = true;
home.packages = with pkgs; [
2024-10-19 09:42:19 -07:00
inputs.alejandra.defaultPackage.${system}
just
maple-mono-NF
2024-10-19 09:42:19 -07:00
];
fonts.fontconfig.defaultFonts.monospace = "Maple Mono NF";
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
./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
./zoxide
];
# 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;
}