This commit is contained in:
SeanOMik 2023-06-04 19:16:00 -04:00
parent 6d74b15815
commit 9555f1115c
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
4 changed files with 9 additions and 1 deletions

View File

@ -25,7 +25,7 @@
system.activationScripts.installBetterDiscord =
''
nix run nixpkgs#betterdiscordctl install
nix run nixpkgs#betterdiscordctl install || true
'';
home-manager.users.seanomik = { pkgs, ... }: {

View File

@ -13,6 +13,8 @@
options = [ "rw" "uid=1000"];
};
services.openssh.enable = true;
# Other modules
imports = [
../hardware-configuration.nix

View File

@ -7,6 +7,7 @@
pulseaudio # This is instaleld to get access to pactl. It isn't enabled or run as a service.
pavucontrol
wireplumber
alsa-oss
];
services.pipewire = {

View File

@ -1,4 +1,9 @@
{pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
virtualisation.spiceUSBRedirection.enable = true;
environment.systemPackages = with pkgs; [
spice-gtk
];
}