nix: update flake lock
All checks were successful
Test / Create distribution (push) Successful in 39s
Test / Sandbox (race detector) (push) Successful in 50s
Test / Sandbox (push) Successful in 52s
Test / Planterette (push) Successful in 50s
Test / Hakurei (race detector) (push) Successful in 57s
Test / Hakurei (push) Successful in 59s
Test / Flake checks (push) Successful in 1m53s
All checks were successful
Test / Create distribution (push) Successful in 39s
Test / Sandbox (race detector) (push) Successful in 50s
Test / Sandbox (push) Successful in 52s
Test / Planterette (push) Successful in 50s
Test / Hakurei (race detector) (push) Successful in 57s
Test / Hakurei (push) Successful in 59s
Test / Flake checks (push) Successful in 1m53s
Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
parent
e71ae3b8c5
commit
625632c593
@ -215,15 +215,14 @@ stdenv.mkDerivation {
|
|||||||
# create binary cache
|
# create binary cache
|
||||||
closureInfo="${
|
closureInfo="${
|
||||||
closureInfo {
|
closureInfo {
|
||||||
rootPaths =
|
rootPaths = [
|
||||||
[
|
homeManagerConfiguration.activationPackage
|
||||||
homeManagerConfiguration.activationPackage
|
launcher
|
||||||
launcher
|
]
|
||||||
]
|
++ optionals gpu [
|
||||||
++ optionals gpu [
|
mesaWrappers
|
||||||
mesaWrappers
|
nixGL
|
||||||
nixGL
|
];
|
||||||
];
|
|
||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
echo "copying application paths..."
|
echo "copying application paths..."
|
||||||
|
12
flake.lock
generated
12
flake.lock
generated
@ -7,11 +7,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1748665073,
|
"lastModified": 1753479839,
|
||||||
"narHash": "sha256-RMhjnPKWtCoIIHiuR9QKD7xfsKb3agxzMfJY8V9MOew=",
|
"narHash": "sha256-E/rPVh7vyPMJUFl2NAew+zibNGfVbANr8BP8nLRbLkQ=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "282e1e029cb6ab4811114fc85110613d72771dea",
|
"rev": "0b9bf983db4d064764084cd6748efb1ab8297d1e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -23,11 +23,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1749024892,
|
"lastModified": 1753345091,
|
||||||
"narHash": "sha256-OGcDEz60TXQC+gVz5sdtgGJdKVYr6rwdzQKuZAJQpCA=",
|
"narHash": "sha256-CdX2Rtvp5I8HGu9swBmYuq+ILwRxpXdJwlpg8jvN4tU=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "8f1b52b04f2cb6e5ead50bd28d76528a2f0380ef",
|
"rev": "3ff0e34b1383648053bba8ed03f201d3466f90c9",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
32
nixos.nix
32
nixos.nix
@ -82,7 +82,8 @@ in
|
|||||||
own = [
|
own = [
|
||||||
"${id}.*"
|
"${id}.*"
|
||||||
"org.mpris.MediaPlayer2.${id}.*"
|
"org.mpris.MediaPlayer2.${id}.*"
|
||||||
] ++ ext.own;
|
]
|
||||||
|
++ ext.own;
|
||||||
|
|
||||||
inherit (ext) call broadcast;
|
inherit (ext) call broadcast;
|
||||||
};
|
};
|
||||||
@ -175,27 +176,26 @@ in
|
|||||||
auto_etc = true;
|
auto_etc = true;
|
||||||
cover = [ "/var/run/nscd" ];
|
cover = [ "/var/run/nscd" ];
|
||||||
|
|
||||||
symlink =
|
symlink = [
|
||||||
|
[
|
||||||
|
"*/run/current-system"
|
||||||
|
"/run/current-system"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
++ optionals (isGraphical && config.hardware.graphics.enable) (
|
||||||
[
|
[
|
||||||
[
|
[
|
||||||
"*/run/current-system"
|
config.systemd.tmpfiles.settings.graphics-driver."/run/opengl-driver"."L+".argument
|
||||||
"/run/current-system"
|
"/run/opengl-driver"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
++ optionals (isGraphical && config.hardware.graphics.enable) (
|
++ optionals (app.multiarch && config.hardware.graphics.enable32Bit) [
|
||||||
[
|
[
|
||||||
[
|
config.systemd.tmpfiles.settings.graphics-driver."/run/opengl-driver-32"."L+".argument
|
||||||
config.systemd.tmpfiles.settings.graphics-driver."/run/opengl-driver"."L+".argument
|
/run/opengl-driver-32
|
||||||
"/run/opengl-driver"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
++ optionals (app.multiarch && config.hardware.graphics.enable32Bit) [
|
]
|
||||||
[
|
);
|
||||||
config.systemd.tmpfiles.settings.graphics-driver."/run/opengl-driver-32"."L+".argument
|
|
||||||
/run/opengl-driver-32
|
|
||||||
]
|
|
||||||
]
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
46
package.nix
46
package.nix
@ -83,18 +83,17 @@ buildGoModule rec {
|
|||||||
# nix build environment does not allow acls
|
# nix build environment does not allow acls
|
||||||
env.GO_TEST_SKIP_ACL = 1;
|
env.GO_TEST_SKIP_ACL = 1;
|
||||||
|
|
||||||
buildInputs =
|
buildInputs = [
|
||||||
[
|
libffi
|
||||||
libffi
|
libseccomp
|
||||||
libseccomp
|
acl
|
||||||
acl
|
wayland
|
||||||
wayland
|
]
|
||||||
]
|
++ (with xorg; [
|
||||||
++ (with xorg; [
|
libxcb
|
||||||
libxcb
|
libXau
|
||||||
libXau
|
libXdmcp
|
||||||
libXdmcp
|
]);
|
||||||
]);
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkg-config
|
pkg-config
|
||||||
@ -130,17 +129,16 @@ buildGoModule rec {
|
|||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.targetPkgs =
|
passthru.targetPkgs = [
|
||||||
[
|
go
|
||||||
go
|
gcc
|
||||||
gcc
|
xorg.xorgproto
|
||||||
xorg.xorgproto
|
util-linux
|
||||||
util-linux
|
|
||||||
|
|
||||||
# for go generate
|
# for go generate
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
wayland-scanner
|
wayland-scanner
|
||||||
]
|
]
|
||||||
++ buildInputs
|
++ buildInputs
|
||||||
++ nativeBuildInputs;
|
++ nativeBuildInputs;
|
||||||
}
|
}
|
||||||
|
@ -173,13 +173,6 @@ in
|
|||||||
} null;
|
} null;
|
||||||
} null;
|
} null;
|
||||||
".local" = fs "800001ed" {
|
".local" = fs "800001ed" {
|
||||||
share = fs "800001ed" {
|
|
||||||
dbus-1 = fs "800001ed" {
|
|
||||||
services = fs "800001ed" {
|
|
||||||
"ca.desrt.dconf.service" = fs "80001ff" null null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
state = fs "800001ed" {
|
state = fs "800001ed" {
|
||||||
".keep" = fs "80001ff" null "";
|
".keep" = fs "80001ff" null "";
|
||||||
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
||||||
|
@ -199,13 +199,6 @@ in
|
|||||||
} null;
|
} null;
|
||||||
} null;
|
} null;
|
||||||
".local" = fs "800001ed" {
|
".local" = fs "800001ed" {
|
||||||
share = fs "800001ed" {
|
|
||||||
dbus-1 = fs "800001ed" {
|
|
||||||
services = fs "800001ed" {
|
|
||||||
"ca.desrt.dconf.service" = fs "80001ff" null null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
state = fs "800001ed" {
|
state = fs "800001ed" {
|
||||||
".keep" = fs "80001ff" null "";
|
".keep" = fs "80001ff" null "";
|
||||||
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
||||||
|
@ -200,13 +200,6 @@ in
|
|||||||
} null;
|
} null;
|
||||||
} null;
|
} null;
|
||||||
".local" = fs "800001ed" {
|
".local" = fs "800001ed" {
|
||||||
share = fs "800001ed" {
|
|
||||||
dbus-1 = fs "800001ed" {
|
|
||||||
services = fs "800001ed" {
|
|
||||||
"ca.desrt.dconf.service" = fs "80001ff" null null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
state = fs "800001ed" {
|
state = fs "800001ed" {
|
||||||
".keep" = fs "80001ff" null "";
|
".keep" = fs "80001ff" null "";
|
||||||
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
||||||
|
@ -199,13 +199,6 @@ in
|
|||||||
} null;
|
} null;
|
||||||
} null;
|
} null;
|
||||||
".local" = fs "800001ed" {
|
".local" = fs "800001ed" {
|
||||||
share = fs "800001ed" {
|
|
||||||
dbus-1 = fs "800001ed" {
|
|
||||||
services = fs "800001ed" {
|
|
||||||
"ca.desrt.dconf.service" = fs "80001ff" null null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
state = fs "800001ed" {
|
state = fs "800001ed" {
|
||||||
".keep" = fs "80001ff" null "";
|
".keep" = fs "80001ff" null "";
|
||||||
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
||||||
|
@ -200,13 +200,6 @@ in
|
|||||||
} null;
|
} null;
|
||||||
} null;
|
} null;
|
||||||
".local" = fs "800001ed" {
|
".local" = fs "800001ed" {
|
||||||
share = fs "800001ed" {
|
|
||||||
dbus-1 = fs "800001ed" {
|
|
||||||
services = fs "800001ed" {
|
|
||||||
"ca.desrt.dconf.service" = fs "80001ff" null null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
} null;
|
|
||||||
state = fs "800001ed" {
|
state = fs "800001ed" {
|
||||||
".keep" = fs "80001ff" null "";
|
".keep" = fs "80001ff" null "";
|
||||||
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
home-manager = fs "800001ed" { gcroots = fs "800001ed" { current-home = fs "80001ff" null null; } null; } null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user