removed old result and updated common
This commit is contained in:
@@ -3,8 +3,10 @@
|
|||||||
let
|
let
|
||||||
sovranSource = builtins.path { path = ../.; name = "sovran-systemsos"; };
|
sovranSource = builtins.path { path = ../.; name = "sovran-systemsos"; };
|
||||||
|
|
||||||
|
pythonEnv = pkgs.python3.withPackages (ps: [ ps.pygobject3 ]);
|
||||||
|
|
||||||
installerPy = pkgs.writeShellScriptBin "sovran-install" ''
|
installerPy = pkgs.writeShellScriptBin "sovran-install" ''
|
||||||
exec ${pkgs.python3}/bin/python3 /etc/sovran/installer.py
|
exec ${pythonEnv}/bin/python3 /etc/sovran/installer.py
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
@@ -32,9 +34,15 @@ in
|
|||||||
|
|
||||||
nix-bitcoin.generateSecrets = true;
|
nix-bitcoin.generateSecrets = true;
|
||||||
|
|
||||||
|
# Propagate typelib paths into the GNOME session so autostart apps see them
|
||||||
|
environment.sessionVariables = {
|
||||||
|
GI_TYPELIB_PATH = "/run/current-system/sw/lib/girepository-1.0";
|
||||||
|
LD_LIBRARY_PATH = "/run/current-system/sw/lib";
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
installerPy
|
installerPy
|
||||||
python3Packages.pygobject3
|
pythonEnv
|
||||||
util-linux
|
util-linux
|
||||||
disko
|
disko
|
||||||
parted
|
parted
|
||||||
|
|||||||
Reference in New Issue
Block a user