mirror of
https://github.com/Ascyii/nixos.git
synced 2025-12-31 22:44:23 -05:00
Cleanup stuff only necessary
This commit is contained in:
@@ -23,22 +23,9 @@
|
||||
};
|
||||
systemPackages = with pkgs; [
|
||||
git
|
||||
fastfetch
|
||||
tor-browser
|
||||
spotify
|
||||
android-studio
|
||||
lazygit
|
||||
unzip
|
||||
|
||||
# Everywhere support
|
||||
starship
|
||||
zoxide
|
||||
kdePackages.qtsvg
|
||||
|
||||
# Add sync support
|
||||
rsync
|
||||
flock
|
||||
curl
|
||||
];
|
||||
pathsToLink = [
|
||||
"/share/icons"
|
||||
|
||||
@@ -5,8 +5,6 @@
|
||||
enable = true;
|
||||
};
|
||||
services.xserver.videoDrivers = ["nvidia"];
|
||||
nixpkgs.config.cudaSupport = true;
|
||||
hardware.enableAllFirmware = true;
|
||||
hardware.nvidia = {
|
||||
modesetting.enable = true;
|
||||
powerManagement.enable = false;
|
||||
@@ -14,4 +12,8 @@
|
||||
nvidiaSettings = true;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
};
|
||||
|
||||
# This causes very long build times
|
||||
#nixpkgs.config.cudaSupport = true;
|
||||
#hardware.enableAllFirmware = true;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
services.minecraft-server = {
|
||||
@@ -9,10 +9,9 @@
|
||||
serverProperties = {
|
||||
server-port = 25565;
|
||||
gamemode = 0;
|
||||
max-players = 5;
|
||||
motd = "NixOS Minecraft server on misox!";
|
||||
max-players = 7;
|
||||
motd = "NixOS Minecraft!";
|
||||
allow-cheats = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# For this a disk with the label nextcloud is required
|
||||
|
||||
# Setting the filesystem for nextcloud
|
||||
fileSystems."/mnt/nextcloudStorage" = {
|
||||
device = "/dev/disk/by-label/nextcloud";
|
||||
|
||||
Reference in New Issue
Block a user