Working on GTK

This commit is contained in:
2026-03-16 08:40:51 +00:00
parent 1a2d3f28c5
commit 04848503b0
3 changed files with 21 additions and 1 deletions
+2 -1
View File
@@ -338,6 +338,7 @@ This is the top of the machine hierarchy
./xdg.nix
./session.nix
./networking.nix
./gtk.nix
inputs.home-manager.nixosModules.home-manager
];
}
@@ -1113,7 +1114,7 @@ This file sets up wayland
** =generated/out_of_tree/machines/traveldroid/gtk.nix=
This file configures gtk
#+BEGIN_SRC nix :tangle generated/system/core/gtk.nix :noweb tangle :mkdirp yes :eval never-html
#+BEGIN_SRC nix :tangle generated/out_of_tree/machines/traveldroid/gtk.nix :noweb tangle :mkdirp yes :eval never-html
{ pkgs, ... }:
{
@@ -0,0 +1,18 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
catppuccin.gtk.mocha.standard.blue
papirus-icon-theme
];
programs.gtk = {
enable = true;
gtk3.enable = true;
theme.name = "Catppuccin-Mocha-Standard-Blue-Dark";
theme.variant = "dark";
iconTheme.name = "Papirus-Dark";
};
# Check session.nix for variables !
}
@@ -18,6 +18,7 @@
./xdg.nix
./session.nix
./networking.nix
./gtk.nix
inputs.home-manager.nixosModules.home-manager
];
}