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

@ -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.