Skip to content
This repository was archived by the owner on Apr 24, 2026. It is now read-only.

Commit 473e562

Browse files
committed
Try to package the account-manager
1 parent 9291a94 commit 473e562

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

configuration.nix

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@
153153
update # the update script (see below)
154154
autostart # the autostart script (see below)
155155
plymouth-hackers-theme
156+
account-manager
156157
];
157158

158159
# List services that you want to enable:
@@ -227,6 +228,18 @@
227228
find $out/share/plymouth/themes/ -name \*.plymouth -exec sed -i "s@\/usr\/@$out\/@" {} \;
228229
'';
229230
};
231+
account-manager = prev.rustPlatform.buildRustPackage {
232+
pname = "account-manager";
233+
version = "0.1.0";
234+
src = ./account-manager;
235+
cargoLock = {
236+
lockFile = ./account-manager/Cargo.lock;
237+
outputHashes = {
238+
};
239+
};
240+
buildInputs = [ prev.qt6.full ];
241+
nativeBuildInputs = [ ];
242+
};
230243
})
231244
];
232245

0 commit comments

Comments
 (0)