mirror of
https://github.com/MichaelFisher1997/nixos.git
synced 2025-06-15 12:03:11 +00:00
22 lines
406 B
Nix
22 lines
406 B
Nix
{ 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
|
|
];
|
|
}
|
|
|