Skip to content

Commit

Permalink
style: ran alejandra .
Browse files Browse the repository at this point in the history
  • Loading branch information
luisnquin committed Mar 2, 2024
1 parent 1b138a2 commit 0b96d99
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 22 deletions.
5 changes: 1 addition & 4 deletions home/modules/dev/go/terminal.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
home.sessionPath = ["$GORROT" "$GOPATH/bin"];

programs.zsh = {
Expand Down
40 changes: 22 additions & 18 deletions system/hardware-configuration.nix
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
# 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" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod"];
boot.initrd.kernelModules = [];
boot.kernelModules = [];
boot.extraModulePackages = [];

fileSystems."/" =
{ device = "/dev/disk/by-uuid/19845ed4-dd55-49e9-b959-8134b67b4a24";
fsType = "ext4";
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/19845ed4-dd55-49e9-b959-8134b67b4a24";
fsType = "ext4";
};

fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/0417-6DB4";
fsType = "vfat";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/0417-6DB4";
fsType = "vfat";
};

swapDevices = [ ];
swapDevices = [];

# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
Expand Down

0 comments on commit 0b96d99

Please sign in to comment.