Dump nixos config after scrubing

This commit is contained in:
jmug
2025-05-03 23:42:03 -07:00
commit 5fa4c76c24
854 changed files with 30072 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{ pkgs, ... } :
{
imports = [
../../home-modules/default.nix
../../home-modules/nvim.nix
../../home-modules/git.nix
../../home-modules/lazygit.nix
../../home-modules/starship.nix
../../home-modules/direnv.nix
../../home-modules/zsh.nix
../../home-modules/tmux.nix
];
home = {
username = "alarm";
homeDirectory = "/home/alarm";
stateVersion = "24.11";
};
programs.zsh = {
shellAliases = {
homesw = "home-manager --flake /home/alarm/nixos#alarm --extra-experimental-features nix-command --extra-experimental-features flakes switch";
};
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}