add bitwarden-rofi
This commit is contained in:
@ -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; }
|
||||
|
Reference in New Issue
Block a user