repo restructure

This commit is contained in:
TheWanderingCrow 2024-12-24 12:22:47 -05:00
parent 1c9fd8d611
commit 62bec7e920
13 changed files with 218 additions and 193 deletions

View file

@ -0,0 +1,9 @@
{
hardware.pulseaudio.support32Bit = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
}

View file

@ -0,0 +1,8 @@
{
boot.loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
};
};
}

View file

@ -0,0 +1,11 @@
{
lib,
config,
...
}: {
imports = [
./network.nix
./audio.nix
./boot.nix
];
}

View file

@ -0,0 +1,3 @@
{
networking.networkmanager.enable = true;
}