trying stylix

This commit is contained in:
2026-03-16 22:27:55 +00:00
parent d4136b07b8
commit 3be7dbc5bb
4 changed files with 23 additions and 48 deletions
+15 -46
View File
@@ -93,7 +93,7 @@ This directory contains configurations specific to Hyprland.
** First Setup ** First Setup
1. Clone this repository. 1. Clone this repository.
2. Run the setup script: =./setup_droidnix.sh=. 2. Run the setup script: =./setup_droid=.
3. Edit =.assets/system/conf/base.conf= to choose your window manager (=wm = "hyprland"= or =wm = "mangowc"=). 3. Edit =.assets/system/conf/base.conf= to choose your window manager (=wm = "hyprland"= or =wm = "mangowc"=).
4. Tangle this Org file to generate Nix configurations: =C-c C-v t= in Emacs or use this: =emacs README.org --batch -f org-babel-tangle && emacs --batch --eval "(setq org-html-htmlize-output-type nil)" README.org -f org-html-export-to-html= 4. Tangle this Org file to generate Nix configurations: =C-c C-v t= in Emacs or use this: =emacs README.org --batch -f org-babel-tangle && emacs --batch --eval "(setq org-html-htmlize-output-type nil)" README.org -f org-html-export-to-html=
5. Build and switch: =sudo nixos-rebuild switch --flake .#<hostname>=. 5. Build and switch: =sudo nixos-rebuild switch --flake .#<hostname>=.
@@ -345,8 +345,8 @@ This is the top of the machine hierarchy
./dbus.nix ./dbus.nix
./audio.nix ./audio.nix
./xdg.nix ./xdg.nix
#./session.nix
./networking.nix ./networking.nix
./nix.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
]; ];
} }
@@ -474,7 +474,7 @@ This is the top if the machine hierarchy
home = user.homeDirectory; home = user.homeDirectory;
}; };
# Optional: Enable auto-login for testing # Optional: Enable auto-login for testing
services.getty.autologinUser = user.username; #services.getty.autologinUser = user.username;
}; };
} }
#+END_SRC #+END_SRC
@@ -540,31 +540,6 @@ This sets the networking.
} }
#+END_SRC #+END_SRC
** =generated/out_of_tree/machines/traveldroid/session.nix=
This sets the session variables
#+BEGIN_SRC nix :tangle generated/out_of_tree/machines/traveldroid/session.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, user, ... }:
{
environment.sessionVariables = {
XDG_SESSION_TYPE = "wayland";
XDG_CURRENT_DESKTOP = "Hyprland";
XCURSOR_SIZE = "24";
GTK_ENABLE_DARK_MODE = "1";
GTK_THEME = "Catppuccin-Mocha-Standard-Blue-Dark";
GTK_ICON_THEME = "Papirus-Dark";
# Use this instead of GTK_APPLICATION_PREFER_DARK_THEME for newer GTK apps:
GTK_THEME_VARIANT = "dark";
# For Qt apps (if any):
QT_STYLE_OVERRIDE = "gtk2";
# For Zen Browser (Firefox fork):
MOZ_ENABLE_WAYLAND = "1";
GSETTINGS_SCHEMA_DIR = "${pkgs.gsettings-desktop-schemas}/share/glib-2.0/schemas";
};
# Add other session-wide variables here (e.g., QT_QPA_PLATFORM, SDL_VIDEODRIVER)
}
#+END_SRC
** =generated/out_of_tree/machines/traveldroid/bluetooth.nix= ** =generated/out_of_tree/machines/traveldroid/bluetooth.nix=
This sets the bluetooth implementation This sets the bluetooth implementation
#+BEGIN_SRC nix :tangle generated/out_of_tree/machines/traveldroid/bluetooth.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle generated/out_of_tree/machines/traveldroid/bluetooth.nix :noweb tangle :mkdirp yes :eval never-html
@@ -670,6 +645,18 @@ You'll notice the color values in multiple places outside this as well.
} }
#+END_SRC #+END_SRC
** =generated/out_of_tree/core/nix.nix=
I use the [[https://catppuccin.com/][Catppuccin]] almost everywhere. The nix module integrates almost automatically everywhere (except gtk).
You'll notice the color values in multiple places outside this as well.
#+BEGIN_SRC nix :tangle generated/system/out_of_tree/nix.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, ... }:
{
nix.settings = {
extra-experimental-features = [ "nix-command" "flakes" ];
};
}
#+END_SRC
* Now we reach the top of the hierarchy which will call all other imports * Now we reach the top of the hierarchy which will call all other imports
@@ -1091,24 +1078,6 @@ You'll notice the color values in multiple places outside this as well.
} }
#+END_SRC #+END_SRC
** =generated/system/core/theme.nix=
I use the [[https://catppuccin.com/][Catppuccin]] almost everywhere. The nix module integrates almost automatically everywhere (except gtk).
You'll notice the color values in multiple places outside this as well.
#+BEGIN_SRC nix :tangle generated/system/core/theme.nix :noweb tangle :mkdirp yes :eval never-html
{ pkgs, flakeRoot, ... }:
{
programs.stylix = {
enable = true;
settings = {
theme = "${flakeRoot}/assets/system/theming/stylix/catppuccin-mocha.yaml";
};
};
}
#+END_SRC
** =generated/system/core/fonts.nix= ** =generated/system/core/fonts.nix=
This file installs and configures fonts This file installs and configures fonts
#+BEGIN_SRC nix :tangle generated/system/core/fonts.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle generated/system/core/fonts.nix :noweb tangle :mkdirp yes :eval never-html
@@ -33,6 +33,6 @@
home = user.homeDirectory; home = user.homeDirectory;
}; };
# Optional: Enable auto-login for testing # Optional: Enable auto-login for testing
services.getty.autologinUser = user.username; #services.getty.autologinUser = user.username;
}; };
} }
@@ -16,8 +16,8 @@
./dbus.nix ./dbus.nix
./audio.nix ./audio.nix
./xdg.nix ./xdg.nix
#./session.nix
./networking.nix ./networking.nix
./nix.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
]; ];
} }
@@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
nix.settings = {
extra-experimental-features = [ "nix-command" "flakes" ];
};
}