wip: dnsc-machine setup
This commit is contained in:
parent
38a0a94072
commit
33d5b06ec1
2 changed files with 28 additions and 2 deletions
|
|
@ -27,8 +27,8 @@
|
|||
reversal-icon-theme
|
||||
fnm
|
||||
libnotify
|
||||
bluez
|
||||
bluetui
|
||||
iwgtk
|
||||
];
|
||||
|
||||
imports = [
|
||||
|
|
@ -74,4 +74,14 @@
|
|||
size = 24;
|
||||
};
|
||||
};
|
||||
|
||||
# Systemd Services
|
||||
systemd.user.services = {
|
||||
mpris-proxy = {
|
||||
description = "Mpris proxy";
|
||||
after = [ "network.target" "sound.target" ];
|
||||
wantedBy = [ "default.target" ];
|
||||
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -50,8 +50,24 @@
|
|||
videoDrivers = [ "nvidia" ];
|
||||
};
|
||||
|
||||
# Nvidia
|
||||
# Hardware Setup
|
||||
hardware = {
|
||||
pulseaudio = {
|
||||
enable = true;
|
||||
package = pkgs.pulseaudioFull;
|
||||
extraConfig = ''
|
||||
load-module module-switch-on-connect
|
||||
'';
|
||||
};
|
||||
bluetooth = {
|
||||
enable = true;
|
||||
settings = {
|
||||
General = {
|
||||
Enable = "Source,Sink,Media,Socket";
|
||||
Experimental = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
graphics.enable = true;
|
||||
nvidia = {
|
||||
modesetting.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue