This commit is contained in:
Kopatz
2025-11-24 18:55:01 +01:00
parent b0243aa4d9
commit 4af80a4f69
6 changed files with 57 additions and 55 deletions

View File

@@ -68,7 +68,6 @@ in
#services.xserver.wacom.enable = true;
services.tumbler.enable = true; # for thumbnails
programs.file-roller.enable = true;
programs.thunar.enable = true;
programs.thunar.plugins = with pkgs.xfce; [
thunar-archive-plugin
@@ -79,6 +78,7 @@ in
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
file-roller
keepassxc
screenshot
wl-clipboard

View File

@@ -78,7 +78,7 @@ in
inputs.agenix.packages."x86_64-linux".default
fastfetch
pdfgrep
glxinfo
mesa-demos
vulkan-tools
ffmpeg
nethogs

View File

@@ -12,7 +12,7 @@ in
options.custom.services.terraria = {
enable = lib.mkEnableOption "Enables terraria server";
path = lib.mkOption {
type = with lib.types; string;
type = with lib.types; str;
default = "/data/servers/terraria";
description = "Base path for terraria server";
};

View File

@@ -12,7 +12,7 @@ in
options.custom.services.syncthing = {
enable = lib.mkEnableOption "Enables syncthing";
basePath = lib.mkOption {
type = with lib.types; string;
type = with lib.types; str;
default = "/home/${config.mainUser.name}/synced";
description = "Base path for syncthing data";
};