Still GTK looks

This commit is contained in:
2026-03-16 10:18:22 +00:00
parent f7ff114619
commit 06aaf21de1
3 changed files with 62 additions and 58 deletions
+1 -1
View File
@@ -138,6 +138,7 @@ Machine-specific NixOS configurations (e.g., =configuration.nix= for =maindroid=
This section contains the Org blocks for tangling Nix code into the generated folders. This section contains the Org blocks for tangling Nix code into the generated folders.
** =flake.nix= ** =flake.nix=
The Nix flake definition for Droidnix. The Nix flake definition for Droidnix.
#+BEGIN_SRC nix :tangle flake.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle flake.nix :noweb tangle :mkdirp yes :eval never-html
@@ -314,7 +315,6 @@ mkShell {
} }
#+END_SRC #+END_SRC
** =generated/out_of_tree/machines/traveldroid/top.nix= ** =generated/out_of_tree/machines/traveldroid/top.nix=
This is the top of the machine hierarchy This is the top of the machine hierarchy
#+BEGIN_SRC nix :tangle generated/out_of_tree/machines/traveldroid/top.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle generated/out_of_tree/machines/traveldroid/top.nix :noweb tangle :mkdirp yes :eval never-html
+1 -3
View File
@@ -15,7 +15,6 @@
url = "github:catppuccin/nix"; url = "github:catppuccin/nix";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
zen-browser = { zen-browser = {
url = "github:youwen5/zen-browser-flake"; url = "github:youwen5/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@@ -53,8 +52,7 @@
# Import machine-specific configurations # Import machine-specific configurations
./generated/out_of_tree/machines/traveldroid/top.nix ./generated/out_of_tree/machines/traveldroid/top.nix
# Catppuccin theme module # Catppuccin theme module
inputs.catppuccin.nixosModules.default inputs.catppuccin.nixosModules.catppuccin
# Anchoring all the other nixes # Anchoring all the other nixes
./generated/top.nix ./generated/top.nix
# Home Manager module # Home Manager module
@@ -20,5 +20,11 @@
./networking.nix ./networking.nix
./gtk.nix ./gtk.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
inputs.catppuccin.nixosModules.default
]; ];
catppuccin = {
enable = true;
flavor = "mocha";
};
} }