bit structure changed and voice init

This commit is contained in:
twoneis 2023-12-27 16:38:38 +01:00
parent 51f6a03060
commit 7c948f74b9
7 changed files with 54 additions and 36 deletions

View file

@ -4,8 +4,10 @@
{ pkgs, ... }: {
imports = [
./audio.nix
./fonts.nix
./docker.nix
../gnome
../virt
];
# Allow packages from nixpkgs
@ -70,20 +72,8 @@
# Enable CUPS to print documents.
services.printing.enable = false;
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
# Security
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
#jack.enable = true;
};
environment.systemPackages = with pkgs; [
pamixer
];
# Define a user account. Don't forget to set a password with passwd.
users.users.twoneis = {
@ -91,19 +81,4 @@
description = "twoneis";
extraGroups = [ "networkmanager" "wheel" "surface-control" "docker" ];
};
# Configure fonts
fonts.packages = with pkgs; [
alegreya
alegreya-sans
(nerdfonts.override { fonts = [ "FiraCode" ]; })
];
fonts.fontconfig = {
defaultFonts = {
serif = [ "Alegreya" ];
sansSerif = [ "Alegreya Sans" ];
monospace = [ "Fira Code Nerd Font" ];
};
};
}