mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-07 22:06:51 +01:00
37 lines
706 B
Nix
37 lines
706 B
Nix
|
{ pkgs, config, lib, channel, ... }:
|
||
|
|
||
|
with lib;
|
||
|
#with lib.internal;
|
||
|
{
|
||
|
networking.networkmanager.enable = true;
|
||
|
|
||
|
hardware.opengl.enable = true;
|
||
|
|
||
|
boot.kernelPackages = pkgs.linuxPackages_zen;
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
gparted
|
||
|
parted
|
||
|
gnufdisk
|
||
|
partition-manager
|
||
|
]
|
||
|
|
||
|
hardware.enableRedistributableFirmware = true;
|
||
|
|
||
|
programs = {
|
||
|
dconf.enable = true;
|
||
|
xwayland.enable = true;
|
||
|
};
|
||
|
|
||
|
# System
|
||
|
custom.system.boot.uboot.enable = true;
|
||
|
custom.system.ssh.enable = true;
|
||
|
custom.nix.enable = true;
|
||
|
custom.hardware.audio.enable = true;
|
||
|
custom.desktop.plasma.enable = true;
|
||
|
|
||
|
# User
|
||
|
custom.user.jopejoe1.enable = true;
|
||
|
custom.user.root.enable = true;
|
||
|
}
|