Dump nixos config after scrubing
This commit is contained in:
commit
5fa4c76c24
854 changed files with 30072 additions and 0 deletions
33
hosts/nixlap/home-root.nix
Normal file
33
hosts/nixlap/home-root.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
|
||||
{ config, pkgs, ... } :
|
||||
|
||||
{
|
||||
|
||||
imports = [
|
||||
../../home-modules/default.nix
|
||||
../../home-modules/nvim.nix
|
||||
../../home-modules/git.nix
|
||||
../../home-modules/lazygit.nix
|
||||
../../home-modules/starship.nix
|
||||
../../home-modules/zsh.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
username = "root";
|
||||
homeDirectory = "/root";
|
||||
|
||||
stateVersion = "24.11";
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
shellAliases = {
|
||||
lg = "lazygit";
|
||||
n = "nvim";
|
||||
# TODO: Interpolate the hostname here.
|
||||
nrsw = "nixos-rebuild switch --flake /home/jmug/nixos#nixlap";
|
||||
};
|
||||
};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue