sound with pipewire

This commit is contained in:
Till 2023-05-21 11:44:04 +02:00
parent e0cde17c34
commit 5780347895
5 changed files with 44 additions and 17 deletions

View file

@ -5,6 +5,12 @@
home.homeDirectory = "/home/till";
home.stateVersion = "22.11";
home.pointerCursor = {
name = "Adwaita";
package = pkgs.gnome.adwaita-icon-theme;
size = 32;
};
nixpkgs = {
config = {
allowUnfree = true;
@ -12,12 +18,6 @@
};
};
# xsession.pointerCursor = {
# name = "Adwaita";
# package = pkgs.gnome.adwaita-icon-theme;
# size = 32;
# };
programs.home-manager.enable = true;
home.packages = with pkgs; [
@ -45,12 +45,14 @@
w3m
openssl
gnupg
urlscan
# office
vdirsyncer
khal
khard
gnome.gnome-sound-recorder
zoom-us
# publishing
pandoc
@ -58,8 +60,13 @@
zotero
zathura
# graphics
inkscape
gimp
# web
qutebrowser
nyxt
# deveolopment
nodejs

View file

@ -1,10 +1,28 @@
{ config, pkgs, ... }:
{
accounts.email = {
accounts.ktiu = {
primary = true;
address = "till@ktiu.net";
realName = "Till Straube";
imap.host = "shorbut.ktiu.net";
smtp.host = "shorbut.ktiu.net";
userName = "till";
neomutt.enable = true;
passwordCommand = "echo 'hi'";
};
};
programs.neomutt = {
# extraConfig = builtins.readFile ./config.vim;
enable = true;
vimKeys = true;
binds = [
{ key = "V"; action = "noop"; map = ["index" "pager"]; }
];
macros = [
{ key = "c"; action = "<enter-command>set signature=$my_signature<enter><mail>"; map = ["index" "pager"]; }
];
# xdg.configFile."nvim/autocommmands.vim".source = ./autocommands.vim;
# xdg.configFile."nvim/ftplugin/markdown.vim".source = ./ftplugin/markdown.vim;
# xdg.configFile."nvim/ftplugin/r.vim".source = ./ftplugin/r.vim;