Skip to content

Commit

Permalink
cleanup + fix jira token var
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet committed Oct 7, 2024
1 parent fd2988e commit 1fbda23
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions home-manager/modules/media.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{ pkgs, ... }:
{ pkgs, unstablePkgs, ... }:

{
home.packages = with pkgs; [
ffmpeg
yt-dlp
unstablePkgs.yt-dlp
imagemagick
mpv
graphviz
Expand Down
4 changes: 2 additions & 2 deletions home-manager/modules/mise.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ in
unstablePkgs.mise
];

# global tools
# global tools (none anymore since we're using nixpkgs)
home.file.".tool-versions".text = ''
'';

xdg.configFile."fish/conf.d/mise.fish".text = ''
programs.fish.interactiveShellInit = ''
${unstablePkgs.mise}/bin/mise activate fish | source
'';

Expand Down
2 changes: 1 addition & 1 deletion home-manager/modules/ssh.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, ... }:
{ ... }:

{
programs.ssh = {
Expand Down
2 changes: 1 addition & 1 deletion home-manager/modules/work/jira.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
};

programs.fish.interactiveShellInit = ''
set JIRA_API_TOKEN (cat ${secrets.work.jiraToken})
set -x JIRA_API_TOKEN (cat ${secrets.work.jiraToken})
'';
}
2 changes: 1 addition & 1 deletion nixos/deskapp/vms-backup.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let
chmod -R u+wr,g+wr,a+r .
# Backup
${pkgs.rsync}/bin/rsync -av --progress --delete --whole-file --sparse . ${backupMount}/vms/
${pkgs.rsync}/bin/rsync -av --progress --delete --whole-file --sparse . ${backupMount}/
'';
in

Expand Down

0 comments on commit 1fbda23

Please sign in to comment.