Reformat all Nix files
This commit is contained in:
parent
9e0c1102a9
commit
355b63cf73
81 changed files with 2293 additions and 1153 deletions
|
@ -1,9 +1,21 @@
|
|||
{ pkgs, lib, config, nixos-hardware, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
nixos-hardware,
|
||||
...
|
||||
}:
|
||||
{
|
||||
config = {
|
||||
boot = {
|
||||
# From nixos-generate-config
|
||||
initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" "sdhci_pci" ];
|
||||
initrd.availableKernelModules = [
|
||||
"nvme"
|
||||
"xhci_pci"
|
||||
"usb_storage"
|
||||
"sd_mod"
|
||||
"sdhci_pci"
|
||||
];
|
||||
kernelModules = [ "kvm-amd" ];
|
||||
};
|
||||
|
||||
|
@ -31,9 +43,11 @@
|
|||
};
|
||||
|
||||
# Alt key swallowed the Meta one
|
||||
home-manager.users.geoffrey = { ... }: {
|
||||
xsession.windowManager.i3.config.modifier = "Mod1";
|
||||
};
|
||||
home-manager.users.geoffrey =
|
||||
{ ... }:
|
||||
{
|
||||
xsession.windowManager.i3.config.modifier = "Mod1";
|
||||
};
|
||||
|
||||
};
|
||||
imports = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue