mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +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 = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../modules/nixos/default.nix
|
../../modules/nixos/default.nix
|
||||||
|
@ -41,7 +48,8 @@
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "nyx";
|
hostName = "nyx";
|
||||||
hostId = builtins.substring 0 8
|
hostId =
|
||||||
|
builtins.substring 0 8
|
||||||
(builtins.hashString "md5" config.networking.hostName);
|
(builtins.hashString "md5" config.networking.hostName);
|
||||||
networkmanager.enable = true;
|
networkmanager.enable = true;
|
||||||
stevenblack = {
|
stevenblack = {
|
||||||
|
@ -121,8 +129,7 @@
|
||||||
after = ["graphical-session.target"];
|
after = ["graphical-session.target"];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Type = "simple";
|
Type = "simple";
|
||||||
ExecStart =
|
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
||||||
"${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
RestartSec = 1;
|
RestartSec = 1;
|
||||||
TimeoutStopSec = 10;
|
TimeoutStopSec = 10;
|
||||||
|
@ -193,8 +200,7 @@
|
||||||
|
|
||||||
qt.enable = true;
|
qt.enable = true;
|
||||||
|
|
||||||
environment.sessionVariables.GST_PLUGIN_SYSTEM_PATH_1_0 =
|
environment.sessionVariables.GST_PLUGIN_SYSTEM_PATH_1_0 = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" (with pkgs.gst_all_1; [
|
||||||
lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" (with pkgs.gst_all_1; [
|
|
||||||
gst-plugins-good
|
gst-plugins-good
|
||||||
gst-plugins-bad
|
gst-plugins-bad
|
||||||
gst-plugins-ugly
|
gst-plugins-ugly
|
||||||
|
|
Loading…
Reference in a new issue