Compare commits

..

No commits in common. "f26253278bc65692a33e58e3b259ae46d2326766" and "666b668f00d2dfeab0bd179d7a8ebdb8f1d74825" have entirely different histories.

2 changed files with 2 additions and 33 deletions

View file

@ -16,19 +16,13 @@ let
};
in
{
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
# Use the latest linux Kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
@ -130,10 +124,7 @@ in
# Enable automatic login for the user.
services.displayManager.autoLogin.enable = true;
services.displayManager.autoLogin.user = "buymymojo";
programs.java = {
enable = true;
package = pkgs.zulu23;
};
programs.java = { enable = true; package = pkgs.zulu23; };
programs.firefox.enable = true;
programs.thunderbird.enable = true;
@ -258,13 +249,6 @@ in
services.flatpak.enable = true;
services.pcscd.enable = true;
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
};
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs";
# virtualisation.docker.rootless = {
@ -341,11 +325,6 @@ in
'';
};
# === Prefer RADV driver ===
environment.variables = {
AMD_VULKAN_ICD = "RADV";
};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave

View file

@ -194,16 +194,6 @@
graphics = {
enable = true;
enable32Bit = true;
# === amdvlk driver ===
extraPackages = with pkgs; [
amdvlk
];
extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
# === amdvlk driver ===
};
openrazer.enable = true;