This commit is contained in:
mtgmonkey 2025-05-31 08:11:46 -04:00
commit 97edab4950
6 changed files with 929 additions and 0 deletions

23
home/stylix.nix Executable file
View file

@ -0,0 +1,23 @@
{
config,
pkgs,
...
}: {
stylix = {
enable = true;
# rebecca has lavener bkg
# tube has dark gray bkg
base16Scheme = "${pkgs.base16-schemes}/share/themes/tube.yaml";
polarity = "dark";
image = ./stylix/nix-wallpaper-gear.png;
fonts = {
serif = config.stylix.fonts.monospace;
sansSerif = config.stylix.fonts.monospace;
emoji = config.stylix.fonts.monospace;
monospace = {
package = pkgs.miracode;
name = "Miracode";
};
};
};
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 MiB

11
home/xmonad/config.hs Executable file
View file

@ -0,0 +1,11 @@
import XMonad
import XMonad.Util.Ungrab
import XMonad.Util.EZConfig
main :: IO ()
main = xmonad $ def
{
modMask = mod4Mask -- map to <Super>
}
`additionalKeysP`
[ ("M-q" , spawn "qutebrowser" ) ]