format
This commit is contained in:
parent
0eb4b39216
commit
594ec240eb
4 changed files with 35 additions and 23 deletions
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
outputs = inputs: let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import inputs.nixpkgs { inherit system; };
|
||||
pkgs = import inputs.nixpkgs {inherit system;};
|
||||
user = "tristan";
|
||||
userFullname = "Tristan Beedell";
|
||||
auto-login = import ./nixos/programs/auto-login.nix;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
{pkgs, config, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
monado
|
||||
];
|
||||
|
|
@ -26,5 +30,4 @@
|
|||
}
|
||||
'';
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -68,8 +68,17 @@ in {
|
|||
datadirectory = "/mnt/storage/nextcloud";
|
||||
};
|
||||
extraApps = {
|
||||
inherit (config.services.nextcloud.package.packages.apps)
|
||||
contacts calendar mail gpoddersync memories notes maps previewgenerator;
|
||||
inherit
|
||||
(config.services.nextcloud.package.packages.apps)
|
||||
contacts
|
||||
calendar
|
||||
mail
|
||||
gpoddersync
|
||||
memories
|
||||
notes
|
||||
maps
|
||||
previewgenerator
|
||||
;
|
||||
oidc_login = pkgs.fetchNextcloudApp {
|
||||
sha256 = "sha256-cN5azlThKPKRVip14yfUNR85of5z+N6NVI7sg6pSGQI=";
|
||||
url = "https://github.com/pulsejet/nextcloud-oidc-login/releases/download/v3.0.2/oidc_login.tar.gz";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue