Reformat all Nix files
This commit is contained in:
parent
9e0c1102a9
commit
355b63cf73
81 changed files with 2293 additions and 1153 deletions
|
@ -1,8 +1,14 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
config = {
|
||||
frogeye.name = "cranberry";
|
||||
disko.devices.disk."${config.frogeye.name}".device = "/dev/disk/by-id/nvme-UMIS_RPJTJ128MEE1MWX_SS0L25188X3RC12121TP";
|
||||
disko.devices.disk."${config.frogeye.name
|
||||
}".device = "/dev/disk/by-id/nvme-UMIS_RPJTJ128MEE1MWX_SS0L25188X3RC12121TP";
|
||||
};
|
||||
imports = [
|
||||
../common/disko/single_uefi_btrfs.nix
|
||||
|
|
|
@ -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