Initial commit

This commit is contained in:
Veneficium 2024-06-11 23:59:03 +02:00
commit 69d741b98b
29 changed files with 718 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ pkgs, ... }: {
imports = [
../../homeManagerModules/zsh.nix
../../homeManagerModules/starship.nix
../../homeManagerModules/desktopPrograms/essentials/firefox.nix
../../homeManagerModules/desktopPrograms/vscodium.nix
../../homeManagerModules/desktopPrograms/vesktop.nix
../../homeManagerModules/cliPrograms/hyfetch.nix
../../homeManagerModules/cliPrograms/bun.nix
../../homeManagerModules/cliPrograms/git.nix
];
home.username = "fedfer";
home.homeDirectory = "/home/fedfer";
xdg.enable = true;
home.packages = with pkgs; [
prismlauncher
foliate
rustup
logseq
python3
impression
chatterino2
qbittorrent
nil
fira-code-nerdfont
];
nixpkgs.config.allowUnfree = true;
home.stateVersion = "23.11"; #DO NOT CHANGE
programs.home-manager.enable = true; #DO NOT CHANGE
}