mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
nixfmt changes
This commit is contained in:
parent
36176f647c
commit
f25c8638ee
36 changed files with 133 additions and 135 deletions
|
|
@ -1,5 +1,5 @@
|
|||
{ nvim-flake, nixfmt, ... }:
|
||||
{ pkgs, config, ... }:
|
||||
{nvim-flake, nixfmt, ...}:
|
||||
{pkgs, config, ...}:
|
||||
{
|
||||
local = {
|
||||
remoteBuild.isBuilder = true;
|
||||
|
|
@ -13,9 +13,9 @@
|
|||
enable = true;
|
||||
kmscon.enable = true;
|
||||
};
|
||||
allowedUnfree = [ "nvidia-x11" ];
|
||||
allowedUnfree = ["nvidia-x11"];
|
||||
};
|
||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
||||
hardware.nvidia = {
|
||||
package = config.boot.kernelPackages.nvidiaPackages.beta;
|
||||
nvidiaPersistenced = false;
|
||||
|
|
@ -73,7 +73,7 @@
|
|||
# QMK configuration
|
||||
via
|
||||
qmk
|
||||
;
|
||||
;
|
||||
inherit (nvim-flake.packages) neovim;
|
||||
inherit fmt;
|
||||
lint = pkgs.writeShellApplication {
|
||||
|
|
@ -128,16 +128,16 @@
|
|||
networks = {
|
||||
"enp11s0" = {
|
||||
name = "enp11s0";
|
||||
bridge = [ "br0" ];
|
||||
bridge = ["br0"];
|
||||
linkConfig.RequiredForOnline = "enslaved";
|
||||
};
|
||||
"br0" = {
|
||||
name = "br0";
|
||||
address = [ "192.168.1.4/24" ];
|
||||
gateway = [ "192.168.1.1" ];
|
||||
dns = [ "192.168.1.1" ];
|
||||
address = ["192.168.1.4/24"];
|
||||
gateway = ["192.168.1.1"];
|
||||
dns = ["192.168.1.1"];
|
||||
DHCP = "no";
|
||||
bridgeConfig = { };
|
||||
bridgeConfig = {};
|
||||
linkConfig = {
|
||||
MACAddress = "D8:5E:D3:E5:47:90";
|
||||
RequiredForOnline = "routable";
|
||||
|
|
@ -177,7 +177,7 @@
|
|||
};
|
||||
};
|
||||
boot = {
|
||||
kernelModules = [ "amdgpu" ];
|
||||
kernelModules = ["amdgpu"];
|
||||
initrd = {
|
||||
availableKernelModules = [
|
||||
"nvme"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue