nixfmt
This commit is contained in:
parent
4146b5aece
commit
2e10a00830
32 changed files with 2944 additions and 2163 deletions
|
@ -3,43 +3,40 @@
|
|||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
let
|
||||
tuxedo-keyboard = pkgs.callPackage (import ../packages/tuxedo-keyboard.nix) {};
|
||||
tuxedo-cc = pkgs.callPackage (import ../packages/tuxedo-control-center/default.nix) {};
|
||||
let
|
||||
tuxedo-keyboard =
|
||||
pkgs.callPackage (import ../packages/tuxedo-keyboard.nix) { };
|
||||
tuxedo-cc =
|
||||
pkgs.callPackage (import ../packages/tuxedo-control-center/default.nix) { };
|
||||
in {
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.availableKernelModules =
|
||||
[ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [
|
||||
tuxedo-keyboard
|
||||
];
|
||||
environment.systemPackages = with pkgs; [
|
||||
tuxedo-cc
|
||||
];
|
||||
boot.extraModulePackages = [ tuxedo-keyboard ];
|
||||
environment.systemPackages = with pkgs; [ tuxedo-cc ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "private/root/nixos";
|
||||
fsType = "zfs";
|
||||
};
|
||||
fileSystems."/" = {
|
||||
device = "private/root/nixos";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/home" =
|
||||
{ device = "private/root/home";
|
||||
fsType = "zfs";
|
||||
};
|
||||
fileSystems."/home" = {
|
||||
device = "private/root/home";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/tmp" =
|
||||
{ device = "private/root/tmp";
|
||||
fsType = "zfs";
|
||||
};
|
||||
fileSystems."/tmp" = {
|
||||
device = "private/root/tmp";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/7E36-C774";
|
||||
fsType = "vfat";
|
||||
};
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/7E36-C774";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue