sysconfig is fking alacritty

This commit is contained in:
Bryan Ramos 2023-06-07 11:25:18 -04:00
parent 006273bec1
commit 769e23cb46
3 changed files with 8 additions and 18 deletions

View file

@ -27,7 +27,7 @@
in
{
nixosConfigurations.socrates = nixpkgs.lib.nixosSystem {
inherit pkgs;
inherit system pkgs;
modules = [
./sysConfig/desktop
disko.nixosModules.disko

View file

@ -21,21 +21,6 @@
"geo.enabled" = false;
"privacy.trackingprotection.enabled" = true;
userChrome = ''
#toolbar-menubar {
visibility: collapse !important;
margin-top: -22px !important;
}
:root[tabsintitlebar] #toolbar-menubar[autohide="true"] ~ #TabsToolbar .titlebar-placeholder[type="menubar"],
:root:not([tabsintitlebar]) #toolbar-menubar[autohide="true"] ~ #TabsToolbar {
display: none;
}
#toolbar-menubar[autohide="true"] ~ #TabsToolbar {
padding-top: 0 !important;
}
'';
"ui.key.menuAcessKeyFocus" = false;
};
}

View file

@ -1,7 +1,6 @@
{ pkgs, lib, ... }:
{ system.stateVersion = "22.11";
environment.defaultPackages = [ ];
# Nix
nix = {
@ -19,6 +18,12 @@
};
environment.systemPackages = with pkgs; [ nix-init pavucontrol ];
# Fonts
fonts.fonts = with pkgs; [
terminus_font
nerdfonts
];
# Audio
services.pipewire = {
enable = true;