Skip to content

Commit

Permalink
A bunch of stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
addisonbeck committed Nov 5, 2024
1 parent 1748101 commit bcb1368
Show file tree
Hide file tree
Showing 11 changed files with 324 additions and 156 deletions.
14 changes: 14 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@
system = "aarch64-darwin";
config.allowUnfree = true;
};
pkgs = import inputs.nixpkgs {
system = "aarch64-darwin";
config.allowUnfree = true;
config.permittedInsecurePackages = [
"libtiff-4.0.3-opentoonz"
];
};
};
modules = [./system/bw.nix];
};
Expand All @@ -77,6 +84,13 @@
system = "aarch64-darwin";
config.allowUnfree = true;
};
pkgs = import inputs.nixpkgs {
system = "aarch64-darwin";
config.allowUnfree = true;
config.permittedInsecurePackages = [
"libtiff-4.0.3-opentoonz"
];
};
};
modules = [./system/air.nix];
};
Expand Down
3 changes: 3 additions & 0 deletions system/with/user/me.nix
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@
./with/program/markdown-mermaid-converter.nix
./with/program/dolphin-emu.nix
./with/program/xdelta.nix
#./with/program/opentoonz.nix <- This doesn't work
./with/program/gimp.nix
./with/program/audacity.nix
];

home.sessionPath = [];
Expand Down
1 change: 1 addition & 0 deletions system/with/user/with/program/audacity.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{pkgs, ...}: {home.packages = [pkgs.audacity];}
1 change: 0 additions & 1 deletion system/with/user/with/program/dolphin-emu.nix
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
{pkgs, ...}: {home.packages = [pkgs.dolphin-emu];}

1 change: 1 addition & 0 deletions system/with/user/with/program/gimp.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{pkgs, ...}: {home.packages = [pkgs.gimp];}
Loading

0 comments on commit bcb1368

Please sign in to comment.