mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 11:00:20 +00:00
why did this not format in the previous commit????
This commit is contained in:
parent
e08f66d286
commit
997bff55a2
1 changed files with 32 additions and 26 deletions
|
@ -1,4 +1,11 @@
|
|||
{ config, pkgs, pkgs-smol, inputs, lib, ... }: {
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
pkgs-smol,
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../modules/nixos/default.nix
|
||||
|
@ -41,7 +48,8 @@
|
|||
|
||||
networking = {
|
||||
hostName = "nyx";
|
||||
hostId = builtins.substring 0 8
|
||||
hostId =
|
||||
builtins.substring 0 8
|
||||
(builtins.hashString "md5" config.networking.hostName);
|
||||
networkmanager.enable = true;
|
||||
stevenblack = {
|
||||
|
@ -121,8 +129,7 @@
|
|||
after = ["graphical-session.target"];
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
ExecStart =
|
||||
"${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
||||
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
||||
Restart = "on-failure";
|
||||
RestartSec = 1;
|
||||
TimeoutStopSec = 10;
|
||||
|
@ -193,8 +200,7 @@
|
|||
|
||||
qt.enable = true;
|
||||
|
||||
environment.sessionVariables.GST_PLUGIN_SYSTEM_PATH_1_0 =
|
||||
lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" (with pkgs.gst_all_1; [
|
||||
environment.sessionVariables.GST_PLUGIN_SYSTEM_PATH_1_0 = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" (with pkgs.gst_all_1; [
|
||||
gst-plugins-good
|
||||
gst-plugins-bad
|
||||
gst-plugins-ugly
|
||||
|
|
Loading…
Reference in a new issue