marleyos/home/default.nix

58 lines
1.3 KiB
Nix
Raw Normal View History

{
system,
pkgs,
inputs,
...
}: {
home.username = "marley";
home.homeDirectory = "/home/marley";
2024-10-29 02:24:11 +00:00
home.language.base = "en_US.UTF-8";
# Tell nix what version it is.
nix.package = pkgs.nix;
2024-10-19 00:49:35 +00:00
# Enable flakes.
nix.settings.experimental-features = ["nix-command" "flakes"];
2024-10-19 00:49:35 +00:00
2024-10-26 02:53:54 +00:00
targets.genericLinux.enable = true;
# Autostart wanted systemd services.
systemd.user.startServices = true;
home.packages = with pkgs; [
2024-10-19 16:42:19 +00:00
inputs.alejandra.defaultPackage.${system}
just
maple-mono-NF
2024-10-19 16:42:19 +00:00
];
fonts.fontconfig.defaultFonts.monospace = "Maple Mono NF";
imports = [
./bat
2024-10-21 03:04:59 +00:00
./btop
2024-10-21 04:23:03 +00:00
./cava
2024-10-27 03:31:39 +00:00
./curl
2024-10-29 03:01:16 +00:00
./fish
2024-10-25 23:36:01 +00:00
./gh
./hyfetch
2024-10-28 02:36:13 +00:00
./syncthing
2024-10-27 03:17:00 +00:00
./wget
2024-10-26 02:53:54 +00:00
./xdg
2024-10-29 02:24:48 +00:00
./xsession
2024-10-27 04:02:53 +00:00
./zathura
];
# 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;
}