Format code with alejandra

This commit is contained in:
2022-04-23 17:52:45 +01:00
parent 0d56231235
commit d90883e404
27 changed files with 743 additions and 677 deletions

View File

@@ -1,6 +1,9 @@
{ config, pkgs, lib, ...}:
{
config,
pkgs,
lib,
...
}: {
# Use the systemd-boot EFI boot loader.
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = lib.mkDefault true;
@@ -37,7 +40,7 @@
isNormalUser = true;
home = "/home/daniel";
initialPassword = "password";
extraGroups = [ "wheel" "networkmanager" "docker" "video" "syncthing" ];
extraGroups = ["wheel" "networkmanager" "docker" "video" "syncthing"];
shell = pkgs.zsh;
};
@@ -58,7 +61,7 @@
];
environment.homeBinInPath = true;
environment.variables = {
EDITOR = "hx";
};
@@ -67,7 +70,7 @@
enable = true;
ohMyZsh = {
enable = true;
plugins = [ "git" "fzf" ];
plugins = ["git" "fzf"];
theme = "agnoster";
};
};

View File

@@ -1,6 +1,9 @@
{ config, pkgs, inputs, ...}:
{
config,
pkgs,
inputs,
...
}: {
security.pam.services.gdm.enableGnomeKeyring = true;
# Enable the X11 windowing system.
hardware.opengl.driSupport32Bit = true;
@@ -9,13 +12,12 @@
networking.networkmanager.enable = true;
programs.nm-applet.enable = true;
services = {
gnome.gnome-keyring.enable = true;
pipewire = {
enable = true;
pulse.enable = true;
enable = true;
pulse.enable = true;
};
xserver = {
@@ -46,4 +48,3 @@
};
};
}