formatting

This commit is contained in:
mjallen18
2025-11-20 16:18:28 -06:00
parent babe314199
commit 53a64aaf52
8 changed files with 151 additions and 155 deletions

View File

@@ -1,10 +1,8 @@
{ {
config,
lib, lib,
options, options,
namespace, namespace,
inputs, inputs,
system,
... ...
}: }:
{ {
@@ -43,17 +41,13 @@
}; };
# Make ALL external HM modules available globally # Make ALL external HM modules available globally
sharedModules = sharedModules = with inputs; [
with inputs;
[
sops-nix.homeManagerModules.sops sops-nix.homeManagerModules.sops
nix-plist-manager.homeManagerModules.default nix-plist-manager.homeManagerModules.default
# Add any other external HM modules here # Add any other external HM modules here
]; ];
users."mattjallen" = users."mattjallen" = lib.mkAliasDefinitions options.${namespace}.home.extraOptions;
lib.mkAliasDefinitions
options.${namespace}.home.extraOptions;
verbose = true; verbose = true;
}; };

View File

@@ -1,4 +1,4 @@
{ config, ... }: { ... }:
{ {
config = { config = {
programs.ssh.knownHosts = { programs.ssh.knownHosts = {

View File

@@ -24,8 +24,7 @@ let
border-radius: 0rem 1rem 1rem 0rem; border-radius: 0rem 1rem 1rem 0rem;
margin-right: 0.5rem; margin-right: 0.5rem;
''; '';
borderLeft = borderLeft = ''
palette.tokens.borderLeft or ''
padding-top: 0.2rem; padding-top: 0.2rem;
padding-bottom: 0.2rem; padding-bottom: 0.2rem;
padding-left: 0.5rem; padding-left: 0.5rem;

View File

@@ -1,20 +1,21 @@
{ lib {
, rustPlatform lib,
, fetchFromGitHub rustPlatform,
, pkg-config fetchFromGitHub,
, makeWrapper pkg-config,
, dbus makeWrapper,
, libpulseaudio dbus,
, gtk4 libpulseaudio,
, libadwaita gtk4,
, glib libadwaita,
, bluez glib,
, wayland bluez,
, libxkbcommon wayland,
, libGL libxkbcommon,
, vulkan-loader libGL,
, xorg vulkan-loader,
, gsettings-desktop-schemas xorg,
gsettings-desktop-schemas,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
@@ -60,7 +61,8 @@ rustPlatform.buildRustPackage rec {
mv $out/bin/librepods $out/bin/.librepods-unwrapped mv $out/bin/librepods $out/bin/.librepods-unwrapped
makeWrapper $out/bin/.librepods-unwrapped $out/bin/librepods \ makeWrapper $out/bin/.librepods-unwrapped $out/bin/librepods \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ --prefix LD_LIBRARY_PATH : "${
lib.makeLibraryPath [
wayland wayland
libxkbcommon libxkbcommon
libGL libGL
@@ -69,7 +71,8 @@ rustPlatform.buildRustPackage rec {
xorg.libXcursor xorg.libXcursor
xorg.libXrandr xorg.libXrandr
xorg.libXi xorg.libXi
]}" \ ]
}" \
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \
--set GDK_BACKEND "wayland,x11" --set GDK_BACKEND "wayland,x11"
''; '';