1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

feat: add gpg agent settings; add kitty

This commit is contained in:
oddlama 2023-02-09 02:31:36 +01:00
parent 8d0c068e53
commit 3fb61b585b
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
16 changed files with 194 additions and 35 deletions

View file

@ -1,11 +1,6 @@
{pkgs, ...}: {
imports = [
./fonts.nix
./wayland.nix
];
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [xdg-desktop-portal-gtk];
};
}

View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [wayland];
services.dbus.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
# gtk portal needed to make gtk apps happy
extraPortals = with pkgs; [xdg-desktop-portal-gtk];
};
}

View file

@ -1,5 +1,6 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [powertop];
services.physlock.enable = true;
services.logind = {
lidSwitch = "ignore";
lidSwitchDocked = "ignore";

View file

@ -3,12 +3,11 @@
pkgs,
...
}: {
sound.enable = true;
environment.systemPackages = with pkgs; [pulseaudio pulsemixer];
hardware.pulseaudio.enable = lib.mkForce false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
@ -34,6 +33,4 @@
client-rt."stream.properties"."resample.quality" = 15;
};
};
sound.enable = true;
}