1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-05-13 05:55:16 +00:00

penix changes

This commit is contained in:
nixzoid 2025-02-21 07:18:56 +09:00
parent 468afdb2a3
commit 84bdc89a42
9 changed files with 20 additions and 29 deletions
flake.lock
machines
embrace/home
jetpure/home
modules
home/programs/gui/qutebrowser
nixos
programs/torrserver
services/transmission
xpackages

2
flake.lock generated
View file

@ -723,7 +723,7 @@
},
"locked": {
"lastModified": 1,
"narHash": "sha256-IHmIr08BcHsPpc6YOnUTeQXvTKggn2XkoYOQSb7kBmk=",
"narHash": "sha256-g/tikq82VxySOiWdGbMFHoq37aLPwSeT76FNZwWlZHo=",
"path": "xpackages",
"type": "path"
},

View file

@ -30,7 +30,7 @@ in
hut
sd
xpk.pkgs.lowfi
xpk.lowfi
];
};
}

View file

@ -37,8 +37,8 @@ in
hut
sd
xpk.pkgs.lowfi
xpk.pkgs.anicliru
xpk.lowfi
xpk.anicliru
];
};
}

View file

@ -6,8 +6,8 @@
let
inherit (lib) x;
transPop = inputs.xpk.pkgs.qTransPop;
transPag = inputs.xpk.pkgs.qTransPag;
transPop = inputs.xpk.qTransPop;
transPag = inputs.xpk.qTransPag;
in
{

View file

@ -28,7 +28,7 @@ in
];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${inputs.xpk.pkgs.torrserver}/bin/torrserver";
ExecStart = "${inputs.xpk.torrserver}/bin/torrserver";
Restart = "on-failure";
Type = "simple";
TimeoutSec = 30;

View file

@ -23,7 +23,7 @@ in
config = mkMerge [
(mkIf cfg.tui.enable {
environment.systemPackages = with pkgs; [
inputs.xpk.pkgs.torque
inputs.xpk.torque
rustmission
];
})

10
xpackages/flake.lock generated
View file

@ -1,12 +1,12 @@
{
"nodes": {
"n": {
"nix": {
"locked": {
"lastModified": 1739580444,
"narHash": "sha256-+/bSz4EAVbqz8/HsIGLroF8aNaO8bLRL7WfACN+24g4=",
"lastModified": 1739866667,
"narHash": "sha256-EO1ygNKZlsAC9avfcwHkKGMsmipUk1Uc0TbrEZpkn64=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "8bb37161a0488b89830168b81c48aed11569cb93",
"rev": "73cf49b8ad837ade2de76f87eb53fc85ed5d4680",
"type": "github"
},
"original": {
@ -18,7 +18,7 @@
},
"root": {
"inputs": {
"n": "n"
"nix": "nix"
}
}
},

View file

@ -2,6 +2,7 @@
# https://github.com/drupol/pkgs-by-name-for-flake-parts
inputs:
let
pkgs = import inputs.nix { system = "x86_64-linux"; };
lib = inputs.nix.lib;
@ -26,6 +27,5 @@ let
legacyPackages = scope.packages scope;
scope = scopeFromDirectory ./pkgs;
in
{
pkgs = flattenPkgs "/" [ ] legacyPackages;
}
flattenPkgs "/" [ ] legacyPackages

View file

@ -19,17 +19,8 @@ pkgs.rustPlatform.buildRustPackage {
rustPlatform.bindgenHook
];
buildInputs =
with pkgs;
[
openssl
]
++ lib.optionals pkgs.stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreAudio
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.SystemConfiguration
]
++ lib.optionals pkgs.stdenv.isLinux [
alsa-lib
];
buildInputs = with pkgs; [
openssl
alsa-lib
];
}