formatting
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
options,
|
||||
namespace,
|
||||
inputs,
|
||||
system,
|
||||
...
|
||||
}:
|
||||
{
|
||||
@@ -43,17 +41,13 @@
|
||||
};
|
||||
|
||||
# Make ALL external HM modules available globally
|
||||
sharedModules =
|
||||
with inputs;
|
||||
[
|
||||
sharedModules = with inputs; [
|
||||
sops-nix.homeManagerModules.sops
|
||||
nix-plist-manager.homeManagerModules.default
|
||||
# Add any other external HM modules here
|
||||
];
|
||||
|
||||
users."mattjallen" =
|
||||
lib.mkAliasDefinitions
|
||||
options.${namespace}.home.extraOptions;
|
||||
users."mattjallen" = lib.mkAliasDefinitions options.${namespace}.home.extraOptions;
|
||||
|
||||
verbose = true;
|
||||
};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ config, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
config = {
|
||||
programs.ssh.knownHosts = {
|
||||
|
||||
@@ -24,8 +24,7 @@ let
|
||||
border-radius: 0rem 1rem 1rem 0rem;
|
||||
margin-right: 0.5rem;
|
||||
'';
|
||||
borderLeft =
|
||||
palette.tokens.borderLeft or ''
|
||||
borderLeft = ''
|
||||
padding-top: 0.2rem;
|
||||
padding-bottom: 0.2rem;
|
||||
padding-left: 0.5rem;
|
||||
|
||||
@@ -1,20 +1,21 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, makeWrapper
|
||||
, dbus
|
||||
, libpulseaudio
|
||||
, gtk4
|
||||
, libadwaita
|
||||
, glib
|
||||
, bluez
|
||||
, wayland
|
||||
, libxkbcommon
|
||||
, libGL
|
||||
, vulkan-loader
|
||||
, xorg
|
||||
, gsettings-desktop-schemas
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
pkg-config,
|
||||
makeWrapper,
|
||||
dbus,
|
||||
libpulseaudio,
|
||||
gtk4,
|
||||
libadwaita,
|
||||
glib,
|
||||
bluez,
|
||||
wayland,
|
||||
libxkbcommon,
|
||||
libGL,
|
||||
vulkan-loader,
|
||||
xorg,
|
||||
gsettings-desktop-schemas,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
@@ -60,7 +61,8 @@ rustPlatform.buildRustPackage rec {
|
||||
mv $out/bin/librepods $out/bin/.librepods-unwrapped
|
||||
|
||||
makeWrapper $out/bin/.librepods-unwrapped $out/bin/librepods \
|
||||
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [
|
||||
--prefix LD_LIBRARY_PATH : "${
|
||||
lib.makeLibraryPath [
|
||||
wayland
|
||||
libxkbcommon
|
||||
libGL
|
||||
@@ -69,7 +71,8 @@ rustPlatform.buildRustPackage rec {
|
||||
xorg.libXcursor
|
||||
xorg.libXrandr
|
||||
xorg.libXi
|
||||
]}" \
|
||||
]
|
||||
}" \
|
||||
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \
|
||||
--set GDK_BACKEND "wayland,x11"
|
||||
'';
|
||||
|
||||
Reference in New Issue
Block a user