mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-04-18 19:24:09 +02:00
update benzaiten
This commit is contained in:
parent
a8db334b7e
commit
6e371c3fad
2 changed files with 20 additions and 3 deletions
|
@ -66,7 +66,10 @@ in {
|
|||
};
|
||||
|
||||
nixpkgs = {
|
||||
config.allowUnfree = true;
|
||||
config ={
|
||||
allowUnfree = true;
|
||||
nvidia.acceptLicense = true;
|
||||
};
|
||||
overlays = [
|
||||
(_self: super: rec {
|
||||
firefox-addons = self.inputs.firefox-addons.packages.${config.nixpkgs.hostPlatform.system};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, config, nixos-hardware, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
|
@ -14,14 +14,28 @@
|
|||
bluetooth.enable = true;
|
||||
local.enable = true;
|
||||
nix.enable = true;
|
||||
plasma.enable = true;
|
||||
user = {
|
||||
jopejoe1.enable = true;
|
||||
root.enable = true;
|
||||
};
|
||||
boot.systemd.enable = true;
|
||||
ssh.enable = true;
|
||||
keyboard = {
|
||||
enable = true;
|
||||
layout = "de";
|
||||
};
|
||||
};
|
||||
|
||||
hardware.nvidia.prime = {
|
||||
nvidiaBusId = "PCI:01:00:0";
|
||||
intelBusId = "PCI:00:02:0";
|
||||
};
|
||||
|
||||
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
||||
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
boot.loader.grub.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [ mixxx ];
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
|
Loading…
Add table
Reference in a new issue