dotfiles.nix/home-manager/sajenim/home.nix

111 lines
2.8 KiB
Nix
Raw Normal View History

2023-05-13 23:55:59 +08:00
# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{ inputs, outputs, lib, config, pkgs, ... }: {
# You can import other home-manager modules here
imports = [
# If you want to use modules your own flake exports (from modules/home-manager):
# outputs.homeManagerModules.example
# Or modules exported from other flakes (such as nix-colors):
# inputs.nix-colors.homeManagerModules.default
# You can also split up your configuration and import pieces of it here:
2023-07-23 08:27:44 +08:00
# User services
./services/picom
2023-05-15 21:11:30 +08:00
# User programs
2023-05-23 23:02:47 +08:00
./programs/discord
2023-05-15 21:11:30 +08:00
./programs/mangohud
2023-10-14 01:03:33 +08:00
./programs/rofi
2023-05-15 21:11:30 +08:00
# Common programs
../common/programs/git
../common/programs/zsh
../common/programs/nvim
2023-05-13 23:55:59 +08:00
];
nixpkgs = {
# You can add overlays here
overlays = [
# Add overlays your own flake exports (from overlays and pkgs dir):
outputs.overlays.additions
outputs.overlays.modifications
outputs.overlays.unstable-packages
# You can also add overlays exported from other flakes:
2023-10-31 05:49:45 +08:00
# inputs.neovim-nightly-overlay.overlays.default
2023-05-13 23:55:59 +08:00
# 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);
};
};
# Enable home-manager
2023-10-31 05:49:45 +08:00
programs = {
home-manager.enable = true;
};
2023-05-13 23:55:59 +08:00
home = {
# Setup our user environment
2023-11-06 18:10:48 +08:00
username = "sajenim";
homeDirectory = "/home/sajenim";
2023-05-13 23:55:59 +08:00
sessionVariables = {
2023-05-15 21:11:30 +08:00
EDITOR = "nvim";
2023-05-13 23:55:59 +08:00
};
# Install some packages
2023-05-15 21:11:30 +08:00
packages = with pkgs; [
2023-07-23 08:27:44 +08:00
# Stable user programs
feh
2023-10-03 15:00:08 +08:00
gamemode
2023-05-15 21:11:30 +08:00
spotify
prismlauncher
2023-10-02 10:16:11 +08:00
runelite
2023-07-23 08:27:44 +08:00
xmobar
2023-10-30 16:26:04 +08:00
super-slicer-latest
2023-07-23 08:27:44 +08:00
# Unstable user programs
unstable.wezterm
2023-05-15 21:11:30 +08:00
];
2023-05-13 23:55:59 +08:00
};
2023-07-23 08:27:44 +08:00
# Setup our window manager
xsession.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = ../../pkgs/xmonad-config/src/xmonad.hs;
};
2023-10-10 18:52:13 +08:00
# Copy our personal font collection
home.file.".local/share/fonts" = {
recursive = true;
source = ../common/fonts;
};
2023-07-23 08:27:44 +08:00
# Copy some configuration files to $XDG_CONFIG_HOME
xdg.configFile = {
wezterm = { source = ./programs/wezterm/config; recursive = true; };
};
# Setup our desktop environment
home.file.".xinitrc".source = ./xinitrc;
2023-05-13 23:55:59 +08:00
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "22.11";
}