Compare commits

..

8 Commits

Author SHA1 Message Date
c988794366 merge lego with existing pkgs
All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 7s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 2m24s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Successful in 7m5s
2025-03-03 08:24:42 -05:00
c7b5b3ce05 move all packages under one folder 2025-03-03 08:24:42 -05:00
d5dd22d4db update documentation
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2025-03-03 08:24:42 -05:00
3054e3f5fd add ftb-app to artemision
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2025-03-03 08:24:42 -05:00
b5f5b14716 expose packages output, add it to global nixpkgs
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2025-03-03 08:24:42 -05:00
d2fb3681d8 add ftb-app package
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2025-03-03 08:24:42 -05:00
59aaa7c8dc remove spotifyd
All checks were successful
Check flake.lock / Check health of `flake.lock` (push) Successful in 6s
Check Nix formatting / Perform Nix format checks (push) Successful in 2m13s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (push) Successful in 7m20s
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2025-03-03 08:24:28 -05:00
0246c3030c
git gone
Some checks failed
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Successful in 6m2s
Check flake.lock / Check health of `flake.lock` (push) Waiting to run
Check Nix formatting / Perform Nix format checks (push) Waiting to run
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (push) Has been cancelled
2025-03-02 20:33:44 -05:00
2 changed files with 8 additions and 19 deletions

View File

@ -74,17 +74,6 @@
fprintd.enable = lib.mkForce false;
openssh.enable = lib.mkForce false;
spotifyd = {
enable = true;
settings = {
global = {
username = "snowinginwonderland@gmail.com";
password_cmd = "cat ${config.sops.secrets."apps/spotify".path}";
use_mpris = false;
};
};
#systemd.services.spotifyd.serviceConfig = systemd.services.spotifyd.
};
rad-dev.yubikey = {
enable = true;
enable-desktop-app = true;

View File

@ -11,15 +11,15 @@
userName = "ahuston-0";
aliases = {
gone = ''
!git fetch -p && git for-each-ref --format '%(refname:short) %(upstream:track)' | # dump all branches
awk '$2 == "[gone]" {print $1}' | # get nuked branches
sed 's/\\x27/\\x5C\\x27/' | # remove single quotes, for xargs reasons
xargs -r git branch -D; # nuke the branches
# git for-each-ref --format '%(refname:short) %(upstream)' | # dump all older branches
# awk 'NF < 2 {print $1}' | # get nuked branches
# grep -Pv "(^origin/|^origin$|stash)" | # filter out remotes & stash
# !git fetch -p && git for-each-ref --format '%(refname:short) %(upstream:track)' | # dump all branches
# awk '$2 == "[gone]" {print $1}' | # get nuked branches
# sed 's/\\x27/\\x5C\\x27/' | # remove single quotes, for xargs reasons
# xargs -r git branch -D # nuke the branches
# xargs -r git branch -D; # nuke the branches #
!git for-each-ref --format '%(refname:short) %(upstream)' | # dump all older branches
awk 'NF < 2 {print $1}' | # get nuked branches
grep -Pv "(^origin/|^origin$|stash)" | # filter out remotes & stash
sed 's/\\x27/\\x5C\\x27/' | # remove single quotes, for xargs reasons
xargs -r git branch -D # nuke the branches
'';
};
extraConfig = {