mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 14:20:33 +01:00
Disabled slskd for now; Adding Intel GPU support
This commit is contained in:
parent
4188d3f263
commit
83fa01f170
|
@ -2,12 +2,15 @@
|
||||||
# your system. Help is available in the configuration.nix(5) man page, on
|
# your system. Help is available in the configuration.nix(5) man page, on
|
||||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||||
|
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, inputs, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
../../modules/home-manager.nix
|
||||||
|
../../common
|
||||||
|
inputs.nixos-hardware.nixosModules.common-gpu-intel
|
||||||
../gc.nix
|
../gc.nix
|
||||||
];
|
];
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
@ -112,16 +115,16 @@
|
||||||
services.jellyfin.enable = true;
|
services.jellyfin.enable = true;
|
||||||
services.jellyfin.user = "xqtc";
|
services.jellyfin.user = "xqtc";
|
||||||
|
|
||||||
services.slskd = {
|
#services.slskd = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
nginx.enable = true;
|
# nginx.enable = true;
|
||||||
nginx.domainName = "seraphim";
|
# nginx.domainName = "seraphim";
|
||||||
settings = {
|
# settings = {
|
||||||
soulseek = {
|
# soulseek = {
|
||||||
username = "razorbladeramen";
|
# username = "razorbladeramen";
|
||||||
};
|
# };
|
||||||
};
|
# };
|
||||||
};
|
#};
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
# started in user sessions.
|
# started in user sessions.
|
||||||
|
|
Loading…
Reference in a new issue