This commit is contained in:
2024-12-27 02:03:45 -06:00
parent 5c310d6e10
commit 5a1e04ebc7
3 changed files with 150 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ inputs, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
@@ -71,14 +71,16 @@
users = {
groups.nixremote.gid = 555;
users = {
jawz.packages = builtins.attrValues {
inherit (pkgs)
distrobox # install packages from other os
gocryptfs # encrypted filesystem! shhh!!!
torrenttools # create torrent files from the terminal!
# vcsi # video thumbnails for torrents, can I replace it with ^?
;
};
jawz.packages =
builtins.attrValues {
inherit (pkgs)
distrobox # install packages from other os
gocryptfs # encrypted filesystem! shhh!!!
torrenttools # create torrent files from the terminal!
# vcsi # video thumbnails for torrents, can I replace it with ^?
;
}
++ [ inputs.ghostty.packages.x86_64-linux.default ];
nixremote = {
isNormalUser = true;
createHome = true;