mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-07 22:26:55 +01:00
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ config, pkgs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware.nix
|
||
];
|
||
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||
|
||
networking.hostName = "kami";
|
||
|
||
networking.networkmanager.enable = true;
|
||
|
||
time.timeZone = "Europe/Berlin";
|
||
|
||
sound.enable = true;
|
||
hardware.pulseaudio.enable = false;
|
||
security.rtkit.enable = true;
|
||
services.pipewire = {
|
||
enable = true;
|
||
alsa.enable = true;
|
||
alsa.support32Bit = true;
|
||
pulse.enable = true;
|
||
};
|
||
|
||
services.xserver.videoDrivers = [ "nvidia" ];
|
||
hardware.opengl.enable = true;
|
||
|
||
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||
|
||
boot.kernelParams = [ "module_blacklist=i915" ];
|
||
|
||
environment.systemPackages = with pkgs; [
|
||
git
|
||
];
|
||
|
||
# Migrated Stuff
|
||
custom.user.jopejoe1.enable =true;
|
||
custom.user.root.enable =true;
|
||
programs.dconf.enable = true;
|
||
custom.system.locale.enable = true;
|
||
custom.system.locale.layout = "de";
|
||
custom.nix.enable = true;
|
||
custom.desktop.plasma.enable = true;
|
||
}
|
||
|