Skip to content

Commit

Permalink
refactor: format
Browse files Browse the repository at this point in the history
  • Loading branch information
solidsnakedev committed Nov 23, 2023
1 parent 795b5a5 commit ebe8eaf
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion home-manager/mac/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
# # };
# };

xdg.configFile.yabai = {
xdg.configFile.yabai = {
source = ../../config/yabai;
recursive = true;
};
Expand Down
2 changes: 1 addition & 1 deletion home-manager/mac/local-modules/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ in
"hover.floatConfig.border" = true;
"hover.floatConfig.rounded" = true;
"tsserver.useLocalTsdk" = true;
"tsserver.tsdk"= "$./node_modules/typescript/lib";
"tsserver.tsdk" = "$./node_modules/typescript/lib";
languageserver = {
haskell = {
command = "haskell-language-server";
Expand Down
2 changes: 1 addition & 1 deletion hosts/nixos/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
xkbVariant = "";
};

services.xserver.videoDrivers = ["nvidia"];
services.xserver.videoDrivers = [ "nvidia" ];
# Enable CUPS to print documents.
services.printing.enable = true;

Expand Down
9 changes: 6 additions & 3 deletions hosts/nixos/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
[
(modulesPath + "/installer/scan/not-detected.nix")
];

boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "vmd" "usb_storage" "usbhid" "sd_mod" ];
Expand All @@ -14,12 +15,14 @@
boot.extraModulePackages = [ ];

fileSystems."/" =
{ device = "/dev/disk/by-uuid/fd9b4977-105e-494f-94cc-492519322c6c";
{
device = "/dev/disk/by-uuid/fd9b4977-105e-494f-94cc-492519322c6c";
fsType = "ext4";
};

fileSystems."/boot/efi" =
{ device = "/dev/disk/by-uuid/65E4-772C";
{
device = "/dev/disk/by-uuid/65E4-772C";
fsType = "vfat";
};

Expand Down
2 changes: 1 addition & 1 deletion modules/bat.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{pkgs, ...}:
{ pkgs, ... }:
{
programs.bat = {
enable = true;
Expand Down
2 changes: 1 addition & 1 deletion modules/direnv.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{pkgs, ...}:
{ pkgs, ... }:
{
programs.direnv = {
enable = true;
Expand Down
2 changes: 1 addition & 1 deletion modules/fish.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{pkgs, ...}:
{ pkgs, ... }:
{
programs.fish = {
enable = true;
Expand Down

0 comments on commit ebe8eaf

Please sign in to comment.