initial commit

This commit is contained in:
zackartz 2024-02-29 22:20:26 -05:00
commit 1f9e5e17af
19 changed files with 1515 additions and 0 deletions

71
env/wayland/default.nix vendored Normal file
View file

@ -0,0 +1,71 @@
{
pkgs,
inputs,
...
}: {
imports = [./fonts.nix];
environment.etc."greetd/environments".text = ''
Hyprland
'';
services = {
greetd = {
enable = true;
settings = rec {
initial_session = {
command = "Hyprland";
user = "zack";
};
default_session = initial_session;
};
};
};
environment = {
variables = {
NIXOS_OZONE_WL = "1";
__GL_GSYNC_ALLOWED = "0";
__GL_VRR_ALLOWED = "0";
_JAVA_AWT_WM_NONEREPARENTING = "1";
SSH_AUTH_SOCK = "/run/user/1000/keyring/ssh";
DISABLE_QT5_COMPAT = "0";
GDK_BACKEND = "wayland,x11";
ANKI_WAYLAND = "1";
DIRENV_LOG_FORMAT = "";
WLR_DRM_NO_ATOMIC = "1";
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
QT_QPA_PLATFORM = "wayland;xcb";
DISABLE_QT_COMPAT = "0";
QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
MOZ_ENABLE_WAYLAND = "1";
WLR_BACKEND = "vulkan";
WLR_RENDERER = "vulkan";
XDG_SESSION_TYPE = "wayland";
SDL_VIDEODRIVER = "wayland";
XDG_CACHE_HOME = "/home/zack/.cache";
CLUTTER_BACKEND = "wayland";
};
loginShellInit = ''
dbus-update-activation-environment --systemd DISPLAY
eval $(gnome-keyring-daemon --start --components=ssh,secrets)
eval $(ssh-agent)
'';
};
hardware.pulseaudio.support32Bit = true;
xdg.portal = {
enable = true;
config.common.default = "*";
extraPortals = [
pkgs.xdg-desktop-portal-gtk
pkgs.xdg-desktop-portal-hyprland
];
};
sound = {
enable = true;
mediaKeys.enable = true;
};
}

42
env/wayland/fonts.nix vendored Normal file
View file

@ -0,0 +1,42 @@
{pkgs, ...}: {
fonts = {
packages = with pkgs; [
material-icons
material-design-icons
roboto
work-sans
comic-neue
source-sans
twemoji-color-font
comfortaa
inter
lato
lexend
jost
dejavu_fonts
iosevka-bin
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
jetbrains-mono
(nerdfonts.override {fonts = ["Iosevka" "JetBrainsMono"];})
];
enableDefaultPackages = false;
# this fixes emoji stuff
fontconfig = {
defaultFonts = {
monospace = [
"Iosevka Term"
"Iosevka Term Nerd Font Complete Mono"
"Iosevka Nerd Font"
"Noto Color Emoji"
];
sansSerif = ["Lexend" "Noto Color Emoji"];
serif = ["Noto Serif" "Noto Color Emoji"];
emoji = ["Noto Color Emoji"];
};
};
};
}