mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 14:54:26 -05:00
Initial commit unclean
This commit is contained in:
24
users/theo/home.nix
Normal file
24
users/theo/home.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
# 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";
|
||||
}
|
||||
Reference in New Issue
Block a user