From 0dac9ad52e54952ffb0b93389ec3cf13021633d8 Mon Sep 17 00:00:00 2001 From: Joe Frikker Date: Sun, 15 Feb 2026 22:59:14 -0500 Subject: [PATCH] No more overall structure --- home.org | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/home.org b/home.org index 6f991ac..a787934 100644 --- a/home.org +++ b/home.org @@ -1,32 +1,6 @@ #+PROPERTY: header-args :mkdirp yes #+PROPERTY: header-args:elisp :lexical t -* Overall Structure - -This is the basic structure of the home.nix file. Individual sections are defined later. - -#+BEGIN_SRC nix :noweb no-export :tangle target/home.nix - { config, pkgs, kube, ... }: - - { - home.packages = with pkgs; [ - <> - ]; - - <> - - programs = { - <> - }; - - fonts.fontconfig.enable = true; - - xdg = { - enable = true; - <> - }; - } -#+END_SRC * Packages Home-manager "packages" are simply binaries that are placed on the path, without any attached configuration. The code blocks in this section contain package lists that go under the packages @@ -171,6 +145,8 @@ are still Shibumi-specific; ideally I'd find another way to install them. openssh tokei ]; + + fonts.fontconfig.enable = true; } #+END_SRC