Better grobi + polybar audio + updates

This commit is contained in:
Filippo Berto 2021-06-17 12:05:57 +02:00
parent b07388875e
commit b3fdc5f573
6 changed files with 89 additions and 68 deletions

View file

@ -1,6 +1,4 @@
{}:
{
{ pkgs, ... }:{
imports =
@ -14,6 +12,7 @@
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.checkJournalingFS = true;
# # Cross-build arm
boot.binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ];
@ -34,7 +33,6 @@
interfaces = {
enp60s0.useDHCP = true;
wlp0s20f3.useDHCP = true;
virbr0.useDHCP = true;
};
# Configure network proxy if necessary
@ -99,7 +97,7 @@
# Define a user account. Don't forget to set a password with passwd.
users.users.bertof = {
isNormalUser = true;
extraGroups = [ "wheel" "input" ]; # Enable sudo for the user.
extraGroups = [ "wheel" "input" "usb" "network" "audio" ]; # Enable sudo for the user.
shell = pkgs.zsh;
};