403 current 2024-04-17 23:42:34 24.05.20240416.5672bc9 6.8.4-zen1 nvidiaProduction nvidiaStable nvidiaVulkanBeta

This commit is contained in:
zackartz 2024-04-17 23:42:35 -04:00
parent d25d01b33c
commit 0658d5e91c
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
5 changed files with 32 additions and 12 deletions

View file

@ -21,8 +21,6 @@
})
];
boot.kernelPackages = pkgs.linuxPackages_zen;
networking.nameservers = ["1.1.1.1" "1.0.0.1"];
virtualisation.vmVariant = {

View file

@ -51,6 +51,7 @@
networking.networkmanager.enable = true;
networking.networkmanager.unmanaged = ["enp6s0"];
boot.kernelPackages = pkgs.linuxPackages_zen;
boot.supportedFilesystems = ["ntfs"];
# Load nvidia driver for Xorg and Wayland
@ -102,7 +103,7 @@
# https://github.com/NVIDIA/open-gpu-kernel-modules#compatible-gpus
# Only available from driver 515.43.04+
# Currently alpha-quality/buggy, so false is currently the recommended setting.
open = false;
open = true;
# Enable the Nvidia settings menu,
# accessible via `nvidia-settings`.

View file

@ -2,6 +2,7 @@
config,
pkgs,
lib,
inputs,
...
}: {
imports = [
@ -13,12 +14,14 @@
};
services = {
qemuGuest.enable = true;
# qemuGuest.enable = true;
openssh.settings.PermitRootLogin = lib.mkForce "yes";
};
boot = {
supportedFilesystems = lib.mkForce ["btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"];
kernelPackages = pkgs.linuxPackages;
extraModulePackages = with config.boot.kernelPackages; [rtl8812au];
};
networking = {
@ -36,8 +39,26 @@
};
};
# Define a user account. Don't forget to set a password with passwd.
users.users.nixos = {
isNormalUser = true;
description = "nixos";
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "plugdev"];
shell = pkgs.zsh;
packages = with pkgs; [
firefox
kate
rio
telegram-desktop
kitty
mailspring
# thunderbird
];
};
home-manager.extraSpecialArgs = {inherit inputs;};
home-manager.users.nixos = {
# imports = [../../modules/home-manager/default.nix];
imports = [../../modules/home-manager/default.nix];
_module.args.theme = import ../../core/theme.nix;
home.stateVersion = "23.11"; # Please read the comment before changing it.