dotfiles-nixos/home-manager/home.nix

82 lines
2.0 KiB
Nix
Raw Normal View History

2023-06-06 15:01:28 +00:00
# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{ inputs, lib, config, pkgs, ... }: {
# You can import other home-manager modules here
imports = [
# If you want to use home-manager modules from other flakes (such as nix-colors):
# inputs.nix-colors.homeManagerModule
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
2023-06-06 16:58:52 +00:00
# ./i3.nix
2023-06-06 15:01:28 +00:00
];
nixpkgs = {
# You can add overlays here
overlays = [
# If you want to use overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
# Workaround for https://github.com/nix-community/home-manager/issues/2942
allowUnfreePredicate = (_: true);
};
};
# TODO_: Set your username
home = {
username = "mans";
homeDirectory = "/home/mans";
};
# Add stuff for your user as you see fit:
programs.neovim.enable = true;
2023-06-13 13:50:49 +00:00
# programs.zsh = {
# enable = true;
# enableAutosuggestions = true;
# enableSyntaxHighlighting = true;
# history.save = 1000;
# };
2023-06-06 16:41:09 +00:00
home.packages = with pkgs; [
2023-06-11 07:16:41 +00:00
garage
2023-06-06 16:58:52 +00:00
librewolf
2023-06-08 13:11:21 +00:00
kitty
2023-06-10 08:59:31 +00:00
teams
2023-06-13 13:50:49 +00:00
obsidian
2023-06-10 08:59:31 +00:00
p3x-onenote
spotify
zathura
playerctl
2023-06-10 09:49:09 +00:00
pulseaudio
2023-06-13 13:50:49 +00:00
discord
cargo
cmake
pkg-config
fontconfig
2023-06-06 16:41:09 +00:00
];
2023-06-06 15:01:28 +00:00
2023-06-10 08:59:31 +00:00
services.playerctld.enable = true;
2023-06-06 15:01:28 +00:00
# Enable home-manager and git
programs.home-manager.enable = true;
programs.git.enable = true;
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "23.05";
}