Skip to content

Commit

Permalink
Template: updated hosts templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Icy-Thought committed Mar 5, 2024
1 parent 24d86bd commit d93a907
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
25 changes: 17 additions & 8 deletions templates/hosts/desktop/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,24 @@
};
browsers = {
default = "firefox";
firefox.enable = true;
firefox = {
enable = true;
privacy.enable = true;
};
};
extensions.player = {
music.enable = true;
video.enable = true;
};
toolset.docViewer = {
enable = true;
program = "zathura";
toolset = {
player = {
music.enable = true;
video.enable = true;
};
social = {
base.enable = true;
matrix.withDaemon.enable = true;
};
docViewer = {
enable = true;
program = "zathura";
};
};
};
};
Expand Down
6 changes: 3 additions & 3 deletions templates/hosts/desktop/hardware.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@
nix.settings.max-jobs = lib.mkDefault 16;
powerManagement.cpuFreqGovernor = "performance";

# WARNING: DISABLE NON-EXISTANT cpu
# :WARN| DISABLE NON-EXISTANT cpu
hardware.cpu.amd.updateMicrocode = true;
hardware.cpu.intel.updateMicrocode = true;

# Here we enable our modules found within modules/
# Here we enable our custom modules (snowflake/modules)
modules.hardware = {
pipewire.enable = true;
bluetooth.enable = true;
razer.enable = true;
pointer.enable = true;
printer.enable = true;
};
}

0 comments on commit d93a907

Please sign in to comment.