Display Error

This commit is contained in:
2026-03-13 20:31:03 +01:00
parent 5b598590cf
commit 3ac4b04d95
3 changed files with 2716 additions and 13 deletions
+2707
View File
File diff suppressed because it is too large Load Diff
+5 -7
View File
@@ -345,7 +345,7 @@ The Nix flake definition for Droidnix.
description = "Droidnix: A dendritic NixOS + Home Manager configuration"; description = "Droidnix: A dendritic NixOS + Home Manager configuration";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@@ -595,13 +595,11 @@ This is the top if the machine hierarchy
** =assets/flake/machines/traveldroid/dbus.nix= ** =assets/flake/machines/traveldroid/dbus.nix=
This sets the dbus implementation This sets the dbus implementation
#+BEGIN_SRC nix :tangle assets/flake/machines/traveldroid/dbus.nix :noweb tangle :mkdirp yes :eval never-html #+BEGIN_SRC nix :tangle assets/flake/machines/traveldroid/dbus.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, ... }: { config, pkgs, lib, ... }:
{ {
# Ensure dbus-broker is installed and used services.dbus = lib.mkForce {
environment.systemPackages = with pkgs; [ dbus-broker ]; enable = false; # Force this to be false
};
# Disable the default dbus service
services.dbus.enable = false;
# Configure dbus-broker via its configuration file # Configure dbus-broker via its configuration file
environment.etc."dbus-broker/launch.conf".text = '' environment.etc."dbus-broker/launch.conf".text = ''
@@ -1,10 +1,8 @@
{ config, pkgs, ... }: { config, pkgs, lib, ... }:
{ {
# Ensure dbus-broker is installed and used services.dbus = lib.mkForce {
environment.systemPackages = with pkgs; [ dbus-broker ]; enable = false; # Force this to be false
};
# Disable the default dbus service
services.dbus.enable = false;
# Configure dbus-broker via its configuration file # Configure dbus-broker via its configuration file
environment.etc."dbus-broker/launch.conf".text = '' environment.etc."dbus-broker/launch.conf".text = ''