Compare commits
2 Commits
39942dd1ce
...
264f96f75e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
264f96f75e | ||
|
|
54a02e7f32 |
@ -16,5 +16,6 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
networking.hostName = "cesium";
|
||||||
networking.firewall.allowedTCPPorts = [ 9003 ];
|
networking.firewall.allowedTCPPorts = [ 9003 ];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,13 +6,17 @@
|
|||||||
boot.loader.systemd-boot.configurationLimit = 5;
|
boot.loader.systemd-boot.configurationLimit = 5;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
boot.kernelModules = [ "hidp" ];
|
||||||
|
|
||||||
|
hardware.bluetooth.enable = true;
|
||||||
|
hardware.bluetooth.settings.Policy.ReconnectAttempts = 0;
|
||||||
|
|
||||||
# System-Tuning für JetBrains Tools
|
# System-Tuning für JetBrains Tools
|
||||||
boot.kernel.sysctl = {
|
boot.kernel.sysctl = {
|
||||||
"fs.inotify.max_user_watches" = 1048576;
|
"fs.inotify.max_user_watches" = 1048576;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Network
|
# Network
|
||||||
networking.hostName = "cesium"; # Define your hostname.
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
@ -50,7 +54,7 @@
|
|||||||
cifs-utils
|
cifs-utils
|
||||||
];
|
];
|
||||||
|
|
||||||
# Shell-Programme
|
# Shell-programms
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
programs.git.enable = true;
|
programs.git.enable = true;
|
||||||
|
|
||||||
@ -65,7 +69,7 @@
|
|||||||
|
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
|
|
||||||
# 32-bit Support für Steam
|
# 32-bit Support for Steam
|
||||||
hardware.graphics.enable32Bit = true;
|
hardware.graphics.enable32Bit = true;
|
||||||
services.pulseaudio.support32Bit = true;
|
services.pulseaudio.support32Bit = true;
|
||||||
|
|
||||||
@ -75,6 +79,10 @@
|
|||||||
services.displayManager.gdm.autoSuspend = false;
|
services.displayManager.gdm.autoSuspend = false;
|
||||||
services.desktopManager.gnome.enable = true;
|
services.desktopManager.gnome.enable = true;
|
||||||
|
|
||||||
|
# After wakeup wait 3 minutes before going a new suspend is possible,
|
||||||
|
# to prevent GNOME's accumulated idle-timer suspends immediately.
|
||||||
|
services.logind.settings.Login.HoldoffTimeoutUSec = "3min";
|
||||||
|
|
||||||
environment.gnome.excludePackages = with pkgs; [
|
environment.gnome.excludePackages = with pkgs; [
|
||||||
gnome-photos
|
gnome-photos
|
||||||
gnome-tour
|
gnome-tour
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user