mirror of
https://codeberg.org/ultra/nixos-dotfiles.git
synced 2024-11-21 21:33:09 +02:00
klhadfkg
Signed-off-by: Alex Stan <alex.stan.2010@proton.me>
This commit is contained in:
parent
7a71af71e7
commit
12f52e1bf3
5 changed files with 5789 additions and 6 deletions
|
@ -113,7 +113,7 @@ in {
|
|||
|
||||
|
||||
# Enable sound with pipewire.
|
||||
sound.enable = true;
|
||||
# sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
|
@ -192,6 +192,12 @@ in {
|
|||
variables = {
|
||||
NIX_AUTO_RUN = "!";
|
||||
};
|
||||
shells = with pkgs; [
|
||||
bashInteractive
|
||||
zsh
|
||||
fish
|
||||
/run/current-system/sw/bin/nologin
|
||||
];
|
||||
};
|
||||
programs = {
|
||||
dconf.enable = true;
|
||||
|
@ -345,7 +351,7 @@ in {
|
|||
anonymousUserNoPassword = true;
|
||||
anonymousUploadEnable = false; # Anyone uploading files wouldn't be so secure, would it?
|
||||
anonymousMkdirEnable = false; # Neither would them creating directories.
|
||||
writeEnable = false;
|
||||
writeEnable = true;
|
||||
};
|
||||
|
||||
snowflake-proxy.enable = true;
|
||||
|
|
|
@ -14,6 +14,7 @@ inputs: { config, pkgs, lib, ... }: {
|
|||
powerManagement.enable = true;
|
||||
#open = true;
|
||||
nvidiaSettings = true;
|
||||
open = true;
|
||||
};
|
||||
};
|
||||
boot = {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
services:
|
||||
web:
|
||||
# image: git.joinsharkey.org/sharkey/sharkey:latest # - VULNERABLE
|
||||
image: registry.activitypub.software/transfem-org/sharkey:develop
|
||||
image: registry.activitypub.software/transfem-org/sharkey:2024.8.2
|
||||
# image: ghcr.io/transfem-org/sharkey:stable
|
||||
# build: .
|
||||
restart: always
|
||||
|
|
5776
hosts/titan/services/Sharkey/sharkey.log
Normal file
5776
hosts/titan/services/Sharkey/sharkey.log
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,7 @@
|
|||
inputs: { pkgs, config, ... }: {
|
||||
services.nextcloud = {
|
||||
enable = true;
|
||||
package = pkgs.nextcloud27;
|
||||
package = pkgs.nextcloud30;
|
||||
hostName = "localhost";
|
||||
config = {
|
||||
adminpassFile = "/var/keys/nextcloud_initial_password";
|
||||
|
@ -10,8 +10,8 @@ inputs: { pkgs, config, ... }: {
|
|||
];
|
||||
overwriteProtocol = "https";
|
||||
};
|
||||
extraApps = with config.services.nextcloud.package.packages.apps; {
|
||||
inherit news files_markdown files_texteditor forms maps memories music onlyoffice polls calendar tasks contacts;
|
||||
extraApps = with pkgs.nextcloud30Packages.apps; {
|
||||
inherit (pkgs.nextcloud30Packages.apps) memories music onlyoffice polls calendar tasks contacts;
|
||||
};
|
||||
/*
|
||||
extraOptions = {
|
||||
|
|
Loading…
Reference in a new issue