New structure since I kept struggling with the home-manager implemnentation

This commit is contained in:
2026-03-18 15:35:42 +00:00
parent 3528dad5e7
commit 182a27d6a3
2 changed files with 11 additions and 23 deletions
+10 -18
View File
@@ -527,23 +527,6 @@ in
}
#+END_SRC
** =generated/modules/system/gtk.nix=
Sets theming for GTK
#+BEGIN_SRC nix :tangle generated/modules/system/gtk.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# feh # wallpaper target
gtk3 # GTK target
gtk4 # GTK target
#st # NVF / terminal target, or kitty
];
# Stylix GTK target
stylix.targets.gtk.enable = true;
}
#+END_SRC
** =generated/modules/system/terminal.nix=
Sets theming for the terminal
#+BEGIN_SRC nix :tangle generated/modules/system/terminal.nix :noweb tangle :mkdirp yes :eval never-html
@@ -811,10 +794,19 @@ in
#+END_SRC
** =generated/modules/system/gtk.nix=
Sewtting up GTK
Setting up GTK
#+BEGIN_SRC nix :tangle generated/modules/system/gtk.nix :noweb tangle :mkdirp yes :eval never-html
{ pkgs, user, ... }:
{
environment.systemPackages = with pkgs; [
# feh # wallpaper target
gtk3 # GTK target
gtk4 # GTK target
#st # NVF / terminal target, or kitty
];
# Stylix GTK target
stylix.targets.gtk.enable = true;
home-manager.users.${user.username} = {
gtk = {
enable = true;