Skip to content

Commit

Permalink
Run nix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
joinemm committed Aug 25, 2024
1 parent fd5f3c1 commit 32e36c3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
3 changes: 1 addition & 2 deletions home-modules/common.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
home.stateVersion = "23.11";
programs.home-manager.enable = true;
nixpkgs.config.allowUnfree = true;
Expand Down
7 changes: 3 additions & 4 deletions modules/desktop/fonts.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
fonts = {
fontconfig = {
enable = true;

defaultFonts = {
emoji = [ "Twitter Color Emoji" ];
emoji = ["Twitter Color Emoji"];
monospace = [
"Fira Code Nerd Font"
"Sarasa Gothic"
Expand All @@ -25,7 +24,7 @@
};

packages = with pkgs; [
(nerdfonts.override { fonts = [ "FiraCode" ]; })
(nerdfonts.override {fonts = ["FiraCode"];})
cantarell-fonts
twitter-color-emoji
sarasa-gothic
Expand Down
11 changes: 7 additions & 4 deletions modules/gaming.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{ pkgs, inputs, ... }:
{
pkgs,
inputs,
...
}: {
imports = [
inputs.nix-gaming.nixosModules.platformOptimizations
inputs.nix-gaming.nixosModules.pipewireLowLatency
Expand All @@ -14,8 +17,8 @@
steam = {
enable = true;
platformOptimizations.enable = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
extraPackages = with pkgs; [ gamemode ];
extraCompatPackages = with pkgs; [proton-ge-bin];
extraPackages = with pkgs; [gamemode];
};

gamemode.enable = true;
Expand All @@ -32,7 +35,7 @@
enable32Bit = true;

# Add vulkan video encoding support
extraPackages = with pkgs; [ libva ];
extraPackages = with pkgs; [libva];
};

# Xbox wireless controller driver
Expand Down

0 comments on commit 32e36c3

Please sign in to comment.