feat: MIT license and some changes

This commit is contained in:
Artur Manuel 2024-11-26 13:51:16 +00:00
commit b164cad6e2
8 changed files with 70 additions and 21 deletions

View file

@ -6,8 +6,8 @@ riverctl spawn "swaybg -i ~/.local/share/wallpapers/02.jpg -m fill"
riverctl spawn "systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
riverctl spawn "dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=river"
riverctl map normal Super T spawn alacritty
riverctl map normal Super R spawn fuzzel
riverctl map normal Super+Shift Return spawn alacritty
riverctl map normal Super P spawn fuzzel
riverctl map normal Super Q close
riverctl map normal Super+Shift E exit
riverctl map normal Super+Shift C spawn "~/.config/river/init"

View file

@ -1,6 +1,6 @@
{pkgs, ...}: {
imports = [
./hardware-configuration.nix
./hardware.nix
./disks.nix
./theme.nix
./apps.nix

View file

@ -1,17 +1,20 @@
{pkgs, ...}: {
alqueva.fonts = {
names = {
sansSerif = ["Iosevka Comfy Wide Fixed"];
monospace = ["Iosevka Comfy Wide Fixed"];
serif = ["Iosevka Comfy Wide Motion Fixed"];
sansSerif = ["Source Sans Pro"];
monospace = ["Source Code Pro"];
serif = ["Source Serif Pro"];
emoji = ["OpenMoji Color"];
};
packages = builtins.attrValues {
inherit
(pkgs.iosevka-comfy)
comfy-wide-fixed
comfy-wide-motion-fixed
;
nerdfonts = pkgs.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];};
packages = {
sansSerif = [pkgs.source-sans-pro];
monospace = [pkgs.source-code-pro];
serif = [pkgs.source-serif-pro];
emoji = [pkgs.openmoji-color];
extra = [
pkgs.source-han-sans
(pkgs.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];})
];
};
enable = true;
};

View file

@ -1,5 +1,4 @@
{
inputs,
pkgs,
lib,
...