mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-11-08 11:41:14 +00:00
Cleanup, added more radio items, tweaks to displaylink
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
gallery-dl
|
||||
transmission_4-qt
|
||||
yt-dlp
|
||||
];
|
||||
|
||||
@@ -23,8 +23,7 @@ in {
|
||||
nixfmt-rfc-style
|
||||
nixos-generators
|
||||
nodejs
|
||||
platformio
|
||||
python311Full
|
||||
# platformio
|
||||
python3Full
|
||||
stm32cubemx
|
||||
stm32flash
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
hardware.rtl-sdr.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
chirp
|
||||
soapysdr
|
||||
soapyrtlsdr
|
||||
];
|
||||
@@ -1,5 +1,14 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
boot = {
|
||||
extraModulePackages = [ config.boot.kernelPackages.evdi ];
|
||||
initrd = {
|
||||
# List of modules that are always loaded by the initrd.
|
||||
kernelModules = [
|
||||
"evdi"
|
||||
];
|
||||
};
|
||||
};
|
||||
services.xserver.videoDrivers = [
|
||||
"displaylink"
|
||||
"modesetting"
|
||||
|
||||
@@ -23,30 +23,27 @@
|
||||
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
||||
|
||||
programs.hyprlock.enable = true;
|
||||
programs.waybar.enable = true;
|
||||
services.hypridle.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
waybar
|
||||
dunst
|
||||
libnotify
|
||||
rofi-wayland
|
||||
nwg-look
|
||||
nwg-displays
|
||||
slurp
|
||||
grim
|
||||
arandr
|
||||
wl-clipboard
|
||||
wlogout
|
||||
dunst
|
||||
flameshot
|
||||
wofi
|
||||
swayimg
|
||||
grim
|
||||
hyprpaper
|
||||
hyprpicker
|
||||
kanshi
|
||||
libnotify
|
||||
mako
|
||||
|
||||
(pkgs.waybar.overrideAttrs (oldAttrs: {
|
||||
mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ];
|
||||
}))
|
||||
# nwg-displays
|
||||
nwg-look
|
||||
rofi-wayland
|
||||
slurp
|
||||
swayimg
|
||||
wl-clipboard
|
||||
wlogout
|
||||
wofi
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user