update/format configuration for jack

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2025-07-16 19:51:05 +02:00
parent 18c8afb616
commit 72e4be86eb
30 changed files with 466 additions and 589 deletions

View File

@@ -1,3 +1,4 @@
# Audio configuration for NixOS using PipeWire
{
security.rtkit.enable = true;
services.pulseaudio.enable = false;

View File

@@ -1,3 +1,4 @@
# Bluetooth configuration for NixOS
{pkgs, ...}: {
environment.systemPackages = with pkgs; [blueman];
hardware.bluetooth = {

View File

@@ -1,3 +1,4 @@
# Docker is a containerization platform that allows you to run applications in isolated environments called containers.
{config, ...}: {
virtualisation.docker.enable = true;
users.users."${config.var.username}".extraGroups = ["docker"];

View File

@@ -1,3 +1,4 @@
# Fonts configuration for NixOS
{pkgs, ...}: {
fonts = {
packages = with pkgs; [

View File

@@ -1,3 +1,4 @@
# Home-manager configuration for NixOS
{inputs, ...}: {
home-manager = {
useGlobalPkgs = true;

View File

@@ -1,3 +1,4 @@
# Hyprland is a dynamic tiling Wayland compositor.
{
inputs,
pkgs,

View File

@@ -1,3 +1,4 @@
# Nix configuration for NixOS
{
config,
inputs,

View File

@@ -1,3 +1,5 @@
# Nvidia configuration for NixOS with Wayland and Hyprland support
# Import this module only if you have an Nvidia GPU
{
pkgs,
config,

View File

@@ -1,3 +1,5 @@
# Omen laptop configuration for NixOS
# Import this only if you have an HP Omen laptop
{
config,
pkgs,

View File

@@ -1,3 +1,4 @@
# Systemd-boot configuration for NixOS
{pkgs, ...}: {
boot = {
bootspec.enable = true;

View File

@@ -1,3 +1,4 @@
# Users configuration for NixOS
{
config,
pkgs,

View File

@@ -1,3 +1,4 @@
# Misc
{
pkgs,
config,