mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
27 lines
430 B
Nix
27 lines
430 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
"${inputs.self}/users/shared/comms.nix"
|
|
"${inputs.self}/users/shared/games.nix"
|
|
"${inputs.self}/users/shared/sweet.nix"
|
|
./kitty.nix
|
|
./vscode
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
obs-studio
|
|
obsidian
|
|
vlc
|
|
qalculate-gtk
|
|
# graphics tools
|
|
gimp3
|
|
xcursorgen
|
|
# browser
|
|
chromium
|
|
firefox
|
|
# 3d modeling
|
|
blender
|
|
prusa-slicer
|
|
];
|
|
}
|