2022-11-20 16:23:58 +01:00
|
|
|
# This is your home-manager configuration file
|
|
|
|
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
|
|
|
|
2023-02-12 23:33:57 +01:00
|
|
|
{ inputs, outputs, lib, pkgs, config, ... }: {
|
2022-11-20 16:23:58 +01:00
|
|
|
# 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:
|
|
|
|
./nvim.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
# TODO: Set your username
|
|
|
|
home = {
|
|
|
|
username = "your-username";
|
|
|
|
homeDirectory = "/home/your-username";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Add stuff for your user as you see fit:
|
|
|
|
# programs.neovim.enable = true;
|
|
|
|
# home.packages = with pkgs; [ steam ];
|
|
|
|
|
|
|
|
# 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 = "22.05";
|
|
|
|
}
|