mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
25 lines
485 B
Nix
25 lines
485 B
Nix
# Only config stuff you cannot config with dotfiles
|
|
# Or stuff that does not interfere with the dotfiles
|
|
|
|
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# Load all the to be installed packages
|
|
# inputs.xremap-flake.homeManagerModules.default
|
|
];
|
|
|
|
|
|
home = {
|
|
username = "theo";
|
|
homeDirectory = "/home/theo";
|
|
sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
home.stateVersion = "24.11";
|
|
}
|