nixos-config/modules/home-manager/default.nix
2024-07-11 21:16:48 +09:00

35 lines
527 B
Nix

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