nixos-config/modules/home-manager/default.nix
2024-07-11 15:02:26 +09:00

34 lines
510 B
Nix

{ pkgs, ... }:
{
imports = [
./git
./vscode
./terminal
./gnome-extensions
./ricing/catppuccin
./ricing/hyprland
];
# 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
];
}