meta: format blue/configuration.nix

This commit is contained in:
Asmir A 2023-09-29 21:13:48 +02:00
parent 5500b7f633
commit c7353452ee

View File

@ -1,14 +1,15 @@
# Edit this configuration file to define what should be installed on # Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, lib, ... }:
{ {
imports = config,
[ pkgs,
lib,
...
}: {
imports = [
]; ];
system.stateVersion = "23.05"; system.stateVersion = "23.05";
system.autoUpgrade.enable = true; system.autoUpgrade.enable = true;
@ -36,11 +37,13 @@
allowSimultaneousMultithreading = true; allowSimultaneousMultithreading = true;
sudo.enable = false; sudo.enable = false;
doas.enable = true; doas.enable = true;
doas.extraRules = [{ doas.extraRules = [
{
users = ["akill"]; users = ["akill"];
keepEnv = true; keepEnv = true;
persist = true; persist = true;
}]; }
];
}; };
powerManagement = { powerManagement = {
@ -56,9 +59,10 @@
networkmanager = { networkmanager = {
enable = true; enable = true;
dns = "none"; dns = "none";
/*wifi.backend = "iwd"; */ /*
wifi.backend = "iwd";
*/
}; };
}; };
time.timeZone = "Europe/Sarajevo"; time.timeZone = "Europe/Sarajevo";
@ -72,7 +76,10 @@
}; };
programs = { programs = {
gnupg.agent = { enable = true; enableSSHSupport = true; }; gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
zsh.enable = true; zsh.enable = true;
firejail.enable = true; firejail.enable = true;
adb.enable = true; adb.enable = true;
@ -154,7 +161,6 @@
actkbd = { actkbd = {
enable = true; enable = true;
bindings = [ bindings = [
{ {
keys = [113]; keys = [113];
events = ["key"]; events = ["key"];