mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 11:26:50 +01:00
35 lines
703 B
Nix
35 lines
703 B
Nix
{ pkgs, config, lib, channel, ... }:
|
|
|
|
with lib;
|
|
#with lib.internal;
|
|
{
|
|
networking.networkmanager.enable = true;
|
|
networking.wireless.enable = mkForce false;
|
|
|
|
hardware.opengl.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gparted
|
|
parted
|
|
gnufdisk
|
|
partition-manager
|
|
];
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
|
|
programs = {
|
|
dconf.enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
|
|
# System
|
|
custom.system.boot.uefi.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;
|
|
}
|