initial commit
This commit is contained in:
commit
9a935f8431
27 changed files with 1309 additions and 0 deletions
42
users/root.nix
Normal file
42
users/root.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
home = {
|
||||
username = "root";
|
||||
homeDirectory = "/home/root";
|
||||
stateVersion = "23.11"; # DO NOT CHANGE
|
||||
|
||||
packages = [
|
||||
];
|
||||
|
||||
file = {
|
||||
};
|
||||
|
||||
sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
};
|
||||
|
||||
imports = [
|
||||
../modules/home-manager/gpg.nix
|
||||
../modules/home-manager/desktop.nix
|
||||
../modules/home-manager/terminals/default.nix
|
||||
];
|
||||
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
userName = "Chris Kruining";
|
||||
userEmail = "chris@kruining.eu";
|
||||
|
||||
ignores = [ "*~" "*.swp" ];
|
||||
aliases = {
|
||||
ci = "commit";
|
||||
};
|
||||
extraConfig = {};
|
||||
};
|
||||
|
||||
lazygit.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue