mirror of
https://github.com/MichaelFisher1997/nixos.git
synced 2025-06-15 13:03:11 +00:00
23 lines
411 B
Nix
23 lines
411 B
Nix
{ 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; [
|
|
jdk8
|
|
# neovim
|
|
# firefox
|
|
# ripgrep
|
|
#zen-browser.packages.${pkgs.system}.twilight
|
|
#zen-browser.packages."${system}".twilight
|
|
];
|
|
}
|
|
|