nixos-config/modules/home-manager/default.nix
2024-07-11 14:12:37 +09:00

32 lines
457 B
Nix

{ pkgs, ... }:
{
imports = [
./git
./ricing/catppuccin
./vscode
./terminal
];
# Allow Unfree
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
# Essentials
firefox
ferdium
git
gh
# School
libreoffice-fresh
onedrive
typora
logisim
pandoc
# Utils
corefonts
noto-fonts
];
}