mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
sysconfig is fking alacritty
This commit is contained in:
parent
006273bec1
commit
769e23cb46
3 changed files with 8 additions and 18 deletions
|
|
@ -27,7 +27,7 @@
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations.socrates = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.socrates = nixpkgs.lib.nixosSystem {
|
||||||
inherit pkgs;
|
inherit system pkgs;
|
||||||
modules = [
|
modules = [
|
||||||
./sysConfig/desktop
|
./sysConfig/desktop
|
||||||
disko.nixosModules.disko
|
disko.nixosModules.disko
|
||||||
|
|
|
||||||
|
|
@ -21,21 +21,6 @@
|
||||||
|
|
||||||
"geo.enabled" = false;
|
"geo.enabled" = false;
|
||||||
"privacy.trackingprotection.enabled" = true;
|
"privacy.trackingprotection.enabled" = true;
|
||||||
|
"ui.key.menuAcessKeyFocus" = false;
|
||||||
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;
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }:
|
||||||
|
|
||||||
{ system.stateVersion = "22.11";
|
{ system.stateVersion = "22.11";
|
||||||
environment.defaultPackages = [ ];
|
|
||||||
|
|
||||||
# Nix
|
# Nix
|
||||||
nix = {
|
nix = {
|
||||||
|
|
@ -19,6 +18,12 @@
|
||||||
};
|
};
|
||||||
environment.systemPackages = with pkgs; [ nix-init pavucontrol ];
|
environment.systemPackages = with pkgs; [ nix-init pavucontrol ];
|
||||||
|
|
||||||
|
# Fonts
|
||||||
|
fonts.fonts = with pkgs; [
|
||||||
|
terminus_font
|
||||||
|
nerdfonts
|
||||||
|
];
|
||||||
|
|
||||||
# Audio
|
# Audio
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue