Skip to content

Commit

Permalink
Merge pull request #919 from NobbZ/remove-sound
Browse files Browse the repository at this point in the history
fix warnings
  • Loading branch information
NobbZ authored Jul 16, 2024
2 parents a149d93 + 85b4717 commit 8059106
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 85 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ managed through nix or even run it.

* `mimas`: My currently used main host.
* `enceladeus`: A secondary laptop, rarely used but still updated.
* `thetys`: A nixos VM solely used in the office for work related things, discontinued
* `dione`: company provided android phone, discontinued
* ~~`thetys`~~: A nixos VM solely used in the office for work related things, discontinued
* ~~`dione`~~: company provided android phone, discontinued
* `rhea`: self owned phone
* `titan`: MacOS VM to play and experiment with
* `hyperion`: Linux-Aarch64 VM to play and experiment with
* ~~`titan`~~: MacOS VM to play and experiment with, discontinued
* ~~`hyperion`~~: Linux-Aarch64 VM to play and experiment with, discontinued
* `phoebe`: TuxedoOS (Ubuntu derivative) laptop, HM only.
6 changes: 0 additions & 6 deletions home/configurations/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,5 @@ _: {

nobbz.homeConfigurations."nmelzer@mimas".system = "x86_64-linux";
nobbz.homeConfigurations."nmelzer@enceladeus".system = "x86_64-linux";
nobbz.homeConfigurations."nmelzer@hyperion".system = "aarch64-linux";
nobbz.homeConfigurations."nmelzer@phoebe".system = "x86_64-linux";

nobbz.homeConfigurations."[email protected]" = {
system = "aarch64-darwin";
hostname = "titan";
};
}
43 changes: 0 additions & 43 deletions home/configurations/nmelzer_at_hyperion.nix

This file was deleted.

2 changes: 1 addition & 1 deletion home/configurations/nmelzer_at_mimas.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
home.packages = builtins.attrValues {
inherit (pkgs) keybase-gui freerdp keepassxc nix-output-monitor discord;
inherit (pkgs) obsidian;
inherit (pkgs.gnome) gnome-tweaks;
inherit (pkgs) gnome-tweaks;
inherit (pkgs) vscode;
};

Expand Down
22 changes: 0 additions & 22 deletions home/configurations/nmelzer_at_titan.nix

This file was deleted.

2 changes: 1 addition & 1 deletion home/modules/profiles/base/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ in {
};

gtk.enable = true;
gtk.theme.package = pkgs.gnome.gnome-themes-extra;
gtk.theme.package = pkgs.gnome-themes-extra;
gtk.theme.name = "Adwaita-dark";

home.keyboard.layout = "de";
Expand Down
1 change: 0 additions & 1 deletion nixos/configurations/enceladeus.nix
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ _: {
# services.printing.enable = true;

# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;

# Enable the X11 windowing system.
Expand Down
2 changes: 1 addition & 1 deletion nixos/configurations/hardware/mimas.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
nix.settings.max-jobs = lib.mkDefault 4;
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";

hardware.opengl.extraPackages = with pkgs; [
hardware.graphics.extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
Expand Down
8 changes: 2 additions & 6 deletions nixos/configurations/mimas.nix
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ in {
# networking.firewall.allowedTCPPorts = [ 3000 ];

# Enable sound.
sound.enable = true;
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
Expand Down Expand Up @@ -154,11 +153,8 @@ in {
zsh.enableCompletion = false;
};

hardware.opengl.driSupport32Bit = true;
hardware.pulseaudio.support32Bit = true;

hardware.opengl.enable = true;
hardware.opengl.extraPackages = [pkgs.vaapiIntel];
hardware.graphics.enable = true;
hardware.graphics.extraPackages = [pkgs.vaapiIntel];

services.gitea = {
enable = true;
Expand Down

0 comments on commit 8059106

Please sign in to comment.