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