"Update"
This commit is contained in:
parent
6d74b15815
commit
9555f1115c
|
@ -25,7 +25,7 @@
|
|||
|
||||
system.activationScripts.installBetterDiscord =
|
||||
''
|
||||
nix run nixpkgs#betterdiscordctl install
|
||||
nix run nixpkgs#betterdiscordctl install || true
|
||||
'';
|
||||
|
||||
home-manager.users.seanomik = { pkgs, ... }: {
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
options = [ "rw" "uid=1000"];
|
||||
};
|
||||
|
||||
services.openssh.enable = true;
|
||||
|
||||
# Other modules
|
||||
imports = [
|
||||
../hardware-configuration.nix
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
{pkgs, ... }:
|
||||
{
|
||||
virtualisation.libvirtd.enable = true;
|
||||
virtualisation.spiceUSBRedirection.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
spice-gtk
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue