reformat according to rfc standard

This commit is contained in:
Thilo Billerbeck 2024-05-28 14:38:22 +02:00
commit 3bceb198a8
34 changed files with 480 additions and 306 deletions
configs/thilo-laptop

View file

@ -1,7 +1,8 @@
{ pkgs, ... }:
{
imports = [ # Include the results of the hardware scan.
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
./../../nixos/common.nix
./../../nixos/builders.nix
@ -15,14 +16,19 @@
boot.plymouth.enable = true;
# Setup keyfile
boot.initrd.secrets = { "/crypto_keyfile.bin" = null; };
boot.initrd.secrets = {
"/crypto_keyfile.bin" = null;
};
networking.hostName = "thilo-laptop"; # Define your hostname.
# Configure console keymap
console.keyMap = "de";
environment.gnome.excludePackages = with pkgs; [ tracker tracker-miners ];
environment.gnome.excludePackages = with pkgs; [
tracker
tracker-miners
];
hardware.bluetooth.enable = true;
@ -66,18 +72,16 @@
];
};
environment.systemPackages = with pkgs; [ brlaser brgenml1lpr ];
nixpkgs.config.permittedInsecurePackages = [
"nix-2.16.2"
environment.systemPackages = with pkgs; [
brlaser
brgenml1lpr
];
nixpkgs.config.permittedInsecurePackages = [ "nix-2.16.2" ];
xdg.portal = {
enable = true;
extraPortals = [
pkgs.kdePackages.xdg-desktop-portal-kde
];
extraPortals = [ pkgs.kdePackages.xdg-desktop-portal-kde ];
};
system.stateVersion = "23.05";