work dev tools + snapcast

This commit is contained in:
Tristan 2023-04-21 17:34:22 +01:00
parent e5a1dfebf5
commit 364fbd5b14
4 changed files with 53 additions and 32 deletions

View file

@ -1,4 +1,3 @@
# https://search.nixos.org/options
{ config, pkgs, ... }:
@ -9,7 +8,7 @@
};
nix.settings.trusted-users = [ "root" "tristan" ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
@ -17,7 +16,7 @@
programs.nm-applet.enable = true;
time.timeZone = "Europe/London";
console = {
font = "Lat2-Terminus16";
useXkbConfig = true;
@ -33,10 +32,12 @@
pulse.enable = true;
jack.enable = true;
};
# pipewire raop
networking.firewall.allowedUDPPorts = [ 6002 6001 ];
security.pam.services.swaylock = {};
services.avahi.enable = true;
security.doas.enable = true;
security.pam.services.swaylock = { };
i18n.defaultLocale = "en_GB.UTF-8";
@ -75,10 +76,6 @@
VISUAL = "nvim";
TERMINAL = "foot";
};
environment.shellAliases = {
code = "codium";
};
services.gvfs.enable = true;
environment.systemPackages = with pkgs; [
@ -96,7 +93,7 @@
configure = {
packages.myPlugins = with pkgs.vimPlugins; {
start = [ vim-surround vim-commentary vim-nix ];
opt = [];
opt = [ ];
};
customRC = ''
vnoremap * y/\V<C-R>=escape(@",'/\')<CR><CR>