add bitwarden-rofi

This commit is contained in:
2024-08-22 10:08:28 -04:00
parent 384964759c
commit 6402e70d23
5 changed files with 72 additions and 56 deletions

View File

@ -149,6 +149,7 @@ rec {
configPath,
hostname,
inputs,
outputs,
src,
users,
home ? true,
@ -160,7 +161,12 @@ rec {
lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs server system;
inherit
inputs
outputs
server
system
;
};
modules =
[
@ -194,7 +200,7 @@ rec {
# type:
# genSystems :: AttrSet -> Path -> Path -> AttrSet
genSystems =
inputs: src: path:
inputs: outputs: src: path:
builtins.listToAttrs (
map (
name:
@ -205,7 +211,12 @@ rec {
inherit name;
value = constructSystem (
{
inherit inputs src configPath;
inherit
inputs
outputs
src
configPath
;
hostname = name;
}
// import configPath { inherit inputs; }