Regenerated
This commit is contained in:
+390
-402
File diff suppressed because it is too large
Load Diff
+5
-17
@@ -179,7 +179,6 @@ This section contains the Org blocks for tangling Nix code into the generated fo
|
|||||||
** =generated/flake.nix=
|
** =generated/flake.nix=
|
||||||
The Nix flake definition for Droidnix.
|
The Nix flake definition for Droidnix.
|
||||||
#+BEGIN_SRC nix :tangle flake.nix :noweb yes :mkdirp yes :eval never
|
#+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";
|
description = "Droidnix: A dendritic NixOS + Home Manager configuration";
|
||||||
inputs = {
|
inputs = {
|
||||||
@@ -245,7 +244,6 @@ The Nix flake definition for Droidnix.
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
./generated/hosts/traveldroid/host.nix
|
./generated/hosts/traveldroid/host.nix
|
||||||
#./generated/users/henrov.nix
|
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit
|
inherit
|
||||||
@@ -1344,28 +1342,18 @@ in
|
|||||||
** =generated/modules/traveldroid/desktop/waybar.nix=
|
** =generated/modules/traveldroid/desktop/waybar.nix=
|
||||||
This file installs and configures waybar
|
This file installs and configures waybar
|
||||||
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/desktop/waybar.nix :noweb yes :mkdirp yes :eval never
|
#+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
|
let
|
||||||
username = config.defaultUser or "henrov";
|
username = config.defaultUser or "henrov";
|
||||||
waybarPath = "${mutableConfigPath}/waybar";
|
waybarPath = "${flakeRoot}/generated/.config/waybar";
|
||||||
scriptsPath = "${mutableConfigPath}/scripts";
|
|
||||||
link = path: config.lib.file.mkOutOfStoreSymlink path;
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
environment.systemPackages = [ pkgs.waybar ];
|
environment.systemPackages = [ pkgs.waybar ];
|
||||||
|
|
||||||
home-manager.users.${username} = { config, lib, ... }:
|
home-manager.users.${username} = {
|
||||||
let
|
|
||||||
link = path: config.lib.file.mkOutOfStoreSymlink path;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/waybar/config.jsonc" = {
|
".config/waybar/config.jsonc".source = "${waybarPath}/config.jsonc";
|
||||||
source = config.lib.file.mkOutOfStoreSymlink (builtins.toString "${waybarPath}/config.jsonc");
|
".config/waybar/style-dark.css".source = "${waybarPath}/style-dark.css";
|
||||||
};
|
|
||||||
".config/waybar/style-dark.css" = {
|
|
||||||
source = config.lib.file.mkOutOfStoreSymlink (builtins.toString "${waybarPath}/style-dark.css");
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -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. ---
|
||||||
# --- 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";
|
description = "Droidnix: A dendritic NixOS + Home Manager configuration";
|
||||||
inputs = {
|
inputs = {
|
||||||
@@ -65,7 +64,6 @@
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
./generated/hosts/traveldroid/host.nix
|
./generated/hosts/traveldroid/host.nix
|
||||||
#./generated/users/henrov.nix
|
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit
|
inherit
|
||||||
|
|||||||
@@ -1,26 +1,16 @@
|
|||||||
# --- 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. ---
|
||||||
{ lib, config, pkgs, repoPath, buildUser, mutableConfigPath, ... }:
|
{ lib, config, pkgs, flakeRoot, ... }:
|
||||||
let
|
let
|
||||||
username = config.defaultUser or "henrov";
|
username = config.defaultUser or "henrov";
|
||||||
waybarPath = "${mutableConfigPath}/waybar";
|
waybarPath = "${flakeRoot}/generated/.config/waybar";
|
||||||
scriptsPath = "${mutableConfigPath}/scripts";
|
|
||||||
link = path: config.lib.file.mkOutOfStoreSymlink path;
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
environment.systemPackages = [ pkgs.waybar ];
|
environment.systemPackages = [ pkgs.waybar ];
|
||||||
|
|
||||||
home-manager.users.${username} = { config, lib, ... }:
|
home-manager.users.${username} = {
|
||||||
let
|
|
||||||
link = path: config.lib.file.mkOutOfStoreSymlink path;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/waybar/config.jsonc" = {
|
".config/waybar/config.jsonc".source = "${waybarPath}/config.jsonc";
|
||||||
source = config.lib.file.mkOutOfStoreSymlink (builtins.toString "${waybarPath}/config.jsonc");
|
".config/waybar/style-dark.css".source = "${waybarPath}/style-dark.css";
|
||||||
};
|
|
||||||
".config/waybar/style-dark.css" = {
|
|
||||||
source = config.lib.file.mkOutOfStoreSymlink (builtins.toString "${waybarPath}/style-dark.css");
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user