started looking at home manager

This commit is contained in:
MichaelFisher1997
2025-05-10 22:44:45 +01:00
parent 81bff57394
commit 27faa64382
4 changed files with 113 additions and 4 deletions

21
home/micqdf.nix Normal file
View File

@@ -0,0 +1,21 @@
{ config, pkgs, ... }: {
home.username = "micqdf";
home.homeDirectory = "/home/micqdf";
home.stateVersion = "24.11";
programs.fish.enable = true;
programs.git = {
enable = true;
userName = "MichaelFisher1997";
};
home.packages = with pkgs; [
neovim
firefox
ripgrep
zen-browser.packages.${pkgs.system}.twilight
#zen-browser.packages."${system}".twilight
];
}