-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(nix): Format files with
alejandra
- Loading branch information
1 parent
742acea
commit 6e4bf27
Showing
20 changed files
with
169 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
{ pkgs, ... }: | ||
{ | ||
{pkgs, ...}: { | ||
programs.git = { | ||
enable = true; | ||
package = pkgs.gitAndTools.gitFull; | ||
delta.enable = true; | ||
includes = [ | ||
{ path = ../../.gitconfig; } | ||
{ path = ../../.config/git/aliases.gitconfig; } | ||
{ path = ../../.config/git/delta.gitconfig; } | ||
{ path = ../../.config/git/delta-themes.gitconfig; } | ||
{path = ../../.gitconfig;} | ||
{path = ../../.config/git/aliases.gitconfig;} | ||
{path = ../../.config/git/delta.gitconfig;} | ||
{path = ../../.config/git/delta-themes.gitconfig;} | ||
]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{ pkgs, ... }: | ||
{ | ||
{pkgs, ...}: { | ||
home.packages = with pkgs; [ | ||
gnome3.gnome-tweaks | ||
paper-gtk-theme | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{ pkgs, ... }: | ||
{ | ||
{pkgs, ...}: { | ||
home.packages = with pkgs; [ | ||
cachix | ||
nix-index | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 24 additions & 20 deletions
44
nixos/machines/acer-vx15-nixos/hardware-configuration.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,35 @@ | ||
# Do not modify this file! It was generated by ‘nixos-generate-config’ | ||
# and may be overwritten by future invocations. Please make changes | ||
# to /etc/nixos/configuration.nix instead. | ||
{ config, lib, pkgs, modulesPath, ... }: | ||
|
||
{ | ||
imports = | ||
[ (modulesPath + "/installer/scan/not-detected.nix") | ||
]; | ||
config, | ||
lib, | ||
pkgs, | ||
modulesPath, | ||
... | ||
}: { | ||
imports = [ | ||
(modulesPath + "/installer/scan/not-detected.nix") | ||
]; | ||
|
||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" "rtsx_usb_sdmmc" ]; | ||
boot.initrd.kernelModules = [ ]; | ||
boot.kernelModules = [ "kvm-intel" ]; | ||
boot.extraModulePackages = [ ]; | ||
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" "rtsx_usb_sdmmc"]; | ||
boot.initrd.kernelModules = []; | ||
boot.kernelModules = ["kvm-intel"]; | ||
boot.extraModulePackages = []; | ||
|
||
fileSystems."/" = | ||
{ device = "/dev/disk/by-uuid/6144099d-7fbd-4a99-95ab-099f5e407546"; | ||
fsType = "ext4"; | ||
}; | ||
fileSystems."/" = { | ||
device = "/dev/disk/by-uuid/6144099d-7fbd-4a99-95ab-099f5e407546"; | ||
fsType = "ext4"; | ||
}; | ||
|
||
fileSystems."/boot" = | ||
{ device = "/dev/disk/by-uuid/0E3F-12C7"; | ||
fsType = "vfat"; | ||
}; | ||
fileSystems."/boot" = { | ||
device = "/dev/disk/by-uuid/0E3F-12C7"; | ||
fsType = "vfat"; | ||
}; | ||
|
||
swapDevices = | ||
[ { device = "/dev/disk/by-uuid/c8e5b308-6971-47ca-89f7-e39f1e98933c"; } | ||
]; | ||
swapDevices = [ | ||
{device = "/dev/disk/by-uuid/c8e5b308-6971-47ca-89f7-e39f1e98933c";} | ||
]; | ||
|
||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
nixos/machines/mcl-nixos-desktop01/hardware-configuration.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 20 additions & 17 deletions
37
nixos/machines/zlx-nixos-desktop/hardware-configuration.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.