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