nixos-config/modules/home-manager/default.nix
2024-07-14 01:07:02 +09:00

34 lines
481 B
Nix

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