Regenerated

This commit is contained in:
2026-04-29 08:20:43 +02:00
parent e75067946f
commit 0917467acf
4 changed files with 400 additions and 436 deletions
+390 -402
View File
File diff suppressed because it is too large Load Diff
+5 -17
View File
@@ -179,7 +179,6 @@ This section contains the Org blocks for tangling Nix code into the generated fo
** =generated/flake.nix=
The Nix flake definition for Droidnix.
#+BEGIN_SRC nix :tangle flake.nix :noweb yes :mkdirp yes :eval never
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{
description = "Droidnix: A dendritic NixOS + Home Manager configuration";
inputs = {
@@ -245,7 +244,6 @@ The Nix flake definition for Droidnix.
};
}
./generated/hosts/traveldroid/host.nix
#./generated/users/henrov.nix
];
specialArgs = {
inherit
@@ -1344,28 +1342,18 @@ in
** =generated/modules/traveldroid/desktop/waybar.nix=
This file installs and configures waybar
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/desktop/waybar.nix :noweb yes :mkdirp yes :eval never
{ lib, config, pkgs, repoPath, buildUser, mutableConfigPath, ... }:
{ lib, config, pkgs, flakeRoot, ... }:
let
username = config.defaultUser or "henrov";
waybarPath = "${mutableConfigPath}/waybar";
scriptsPath = "${mutableConfigPath}/scripts";
link = path: config.lib.file.mkOutOfStoreSymlink path;
waybarPath = "${flakeRoot}/generated/.config/waybar";
in
{
environment.systemPackages = [ pkgs.waybar ];
home-manager.users.${username} = { config, lib, ... }:
let
link = path: config.lib.file.mkOutOfStoreSymlink path;
in
{
home-manager.users.${username} = {
home.file = {
".config/waybar/config.jsonc" = {
source = config.lib.file.mkOutOfStoreSymlink (builtins.toString "${waybarPath}/config.jsonc");
};
".config/waybar/style-dark.css" = {
source = config.lib.file.mkOutOfStoreSymlink (builtins.toString "${waybarPath}/style-dark.css");
};
".config/waybar/config.jsonc".source = "${waybarPath}/config.jsonc";
".config/waybar/style-dark.css".source = "${waybarPath}/style-dark.css";
};
};
-2
View File
@@ -1,5 +1,4 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{
description = "Droidnix: A dendritic NixOS + Home Manager configuration";
inputs = {
@@ -65,7 +64,6 @@
};
}
./generated/hosts/traveldroid/host.nix
#./generated/users/henrov.nix
];
specialArgs = {
inherit
@@ -1,26 +1,16 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ lib, config, pkgs, repoPath, buildUser, mutableConfigPath, ... }:
{ lib, config, pkgs, flakeRoot, ... }:
let
username = config.defaultUser or "henrov";
waybarPath = "${mutableConfigPath}/waybar";
scriptsPath = "${mutableConfigPath}/scripts";
link = path: config.lib.file.mkOutOfStoreSymlink path;
waybarPath = "${flakeRoot}/generated/.config/waybar";
in
{
environment.systemPackages = [ pkgs.waybar ];
home-manager.users.${username} = { config, lib, ... }:
let
link = path: config.lib.file.mkOutOfStoreSymlink path;
in
{
home-manager.users.${username} = {
home.file = {
".config/waybar/config.jsonc" = {
source = config.lib.file.mkOutOfStoreSymlink (builtins.toString "${waybarPath}/config.jsonc");
};
".config/waybar/style-dark.css" = {
source = config.lib.file.mkOutOfStoreSymlink (builtins.toString "${waybarPath}/style-dark.css");
};
".config/waybar/config.jsonc".source = "${waybarPath}/config.jsonc";
".config/waybar/style-dark.css".source = "${waybarPath}/style-dark.css";
};
};