Added somcli. Updated whole lot of stuff. Added game binds to hyprland (stlil have to add steam). Added minimal nixos config. Combined pipewire sink. Todo list. Beginning of server config

This commit is contained in:
Jurn Wubben 2025-03-27 01:15:02 +01:00
parent c48b41c250
commit 58dcc86ca8
18 changed files with 280 additions and 26 deletions

View file

@ -1,11 +1,19 @@
{pkgs, ...}: {
home.packages = [
pkgs.gh
pkgs.ripgrep
pkgs.ear2ctl # FIXME: only when bluetooth enabled
pkgs.bluetui
pkgs.typst #FIXME: move to flake shell
];
{
pkgs,
lib,
osConfig,
inputs,
...
}: {
home.packages =
[
pkgs.gh
pkgs.ripgrep
]
++ lib.optionals osConfig.niksos.desktop [
inputs.somcli.defaultPackage.${pkgs.system}
]
++ lib.optionals osConfig.niksos.bluetooth [
pkgs.ear2ctl
];
}

View file

@ -1,3 +1,5 @@
{
programs.yazi.enable = true;
programs.yazi = {
enable = true;
};
}