meow set up vaultwarden

This commit is contained in:
Schrottkatze 2023-02-03 23:06:00 +01:00
parent b6670bcd1a
commit b159ff8c4b
6 changed files with 164 additions and 0 deletions

View file

@ -54,6 +54,23 @@
nixos-hardware.nixosModules.apple-t2
];
};
schrottserver = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
};
system = "x86_64-linux";
modules = [
./schrottserver/configuration.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.jade = { nixosConfig, pkgs, ... }: {
home.sessionVariables.TZ = nixosConfig.time.timeZone;
home.stateVersion = "${nixosConfig.system.stateVersion}";
};
}
];
};
};
};
}