This commit is contained in:
js0ny 2025-10-23 04:38:15 +01:00
parent 8bcd089b3a
commit 93664e4120
15 changed files with 163 additions and 74 deletions

View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
home.packages = with pkgs; [
typst
typstyle
];
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
myriad-dreamin.tinymist
];
}

View file

@ -1,7 +1,6 @@
{pkgs, ...}: {
{...}: {
imports = [
./core/configuration.nix
./core/packages.nix
];
}

View file

@ -1,5 +1,12 @@
{ pkgs, ... }:
{
services.desktopManager.gnome.enable = true;
environment.systemPackages = with pkgs; [
gnome-menus
];
environment.gnome.excludePackages = with pkgs; [
evince
totem
papers
];
}