init
This commit is contained in:
commit
97edab4950
6 changed files with 929 additions and 0 deletions
23
home/stylix.nix
Executable file
23
home/stylix.nix
Executable 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
BIN
home/stylix/nix-wallpaper-gear.png
Executable file
BIN
home/stylix/nix-wallpaper-gear.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 7.5 MiB |
11
home/xmonad/config.hs
Executable file
11
home/xmonad/config.hs
Executable 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" ) ]
|
Loading…
Add table
Add a link
Reference in a new issue