Compare commits

..

No commits in common. "0481cc019aabb758149d4bd088a3ced9536b9412" and "e313b4d303af60f16290894eff71c2fe83801c40" have entirely different histories.

5 changed files with 21 additions and 30 deletions

View File

@ -96,8 +96,6 @@
gnome-weather
gnome-maps
gnome-contacts
pkgs.gnome-console
totem
];
# Enable CUPS to print documents.
@ -116,6 +114,23 @@
};
};
# Enable sound with pipewire.
# sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;

View File

@ -42,14 +42,13 @@
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares.nix" {
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix" {
networking.wireless.enable = false;
}
./configuration.nix {
networking.hostName = "kremzeek";
boot.loader.efi.canTouchEfiVariables = true;
# sound.enable = true;
# hardware.pulseaudio.enable = true;
sound.enable = true;
}
home-manager.nixosModules.home-manager
{
@ -80,7 +79,6 @@
sound.enable = true; # only on unstable?
}
./hardware/galvatron-hw.nix
./modules/sound/pipewire.nix
inputs.apple-silicon.nixosModules.apple-silicon-support
inputs.home-manager-unstable.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
@ -103,7 +101,6 @@
}
./server/services.nix
./hardware/breakdown-hw.nix
./modules/sound/pipewire.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
@ -126,7 +123,6 @@
sound.enable = true;
}
./hardware/starscream-hw.nix
./modules/sound/pipewire.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
@ -154,7 +150,6 @@
}
./modules/droidcam-obs.nix # only this machine
./hardware/knockout-hw.nix
./modules/sound/pipewire.nix
inputs.home-manager-unstable.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;

View File

@ -13,7 +13,7 @@ with lib.hm.gvariant;
dconf.settings = {
"org/gnome/shell" = {
"favorite-apps" = [
"kitty.desktop"
"org.gnome.Console.desktop"
"firefox.desktop"
"emacs.desktop"
"org.gnome.Settings.desktop"

View File

@ -3,7 +3,7 @@
programs.bash = {
enable = true;
shellAliases = {
ls = "eza";
ls = "exa";
};
initExtra = ''
export EDITOR=emacs\ -nw

View File

@ -1,19 +0,0 @@
{ config, lib, pkgs, nixos-unstable, inputs, ... }:
{
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
}