mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-07 23:46:51 +01:00
39 lines
961 B
Nix
39 lines
961 B
Nix
{ pkgs, config, lib, channel, ... }:
|
|
|
|
with lib;
|
|
#with lib.internal;
|
|
{
|
|
imports = [ ./hardware.nix ];
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
custom.system.boot.uefi.enable = true;
|
|
#custom.system.xdg.enable = true;
|
|
#custom.system.fonts.enable = true;
|
|
custom.system.locale.enable = true;
|
|
custom.system.locale.layout = "de";
|
|
#custom.system.ssh.enable = true;
|
|
custom.nix.enable = true;
|
|
#custom.hardware.audio.enable = true;
|
|
#custom.hardware.printing.enable = true;
|
|
custom.desktop.plasma.enable = true;
|
|
|
|
custom.user.jopejoe1.enable =true;
|
|
custom.user.root.enable =true;
|
|
|
|
networking.hostName = "kami";
|
|
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
hardware.opengl.enable = true;
|
|
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
|
|
boot.kernelParams = [ "module_blacklist=i915" ];
|
|
|
|
programs = {
|
|
dconf.enable = true;
|
|
#droidcam.enable = true;
|
|
#sysdig.enable = true;
|
|
#xwayland.enable = true;
|
|
};
|
|
|
|
}
|