1
0
Fork 0
This commit is contained in:
Malte 2022-11-22 16:33:20 +01:00
parent f2b0ff5abb
commit 127c135188
5 changed files with 6 additions and 8 deletions

View file

@ -8,7 +8,7 @@
sed 's/dep_\[[^ ]* //' -i ~/.task/*.data
'';
in {
home.packages = [pkgs.taskwarrior-git fix-tasks];
home.packages = [fix-tasks];
services.taskwarrior-sync = {
enable = true;
frequency = "*:0/1";

View file

@ -2,7 +2,10 @@
config,
pkgs,
...
}: {
}: let
emanote_commit = (builtins.fromJSON (builtins.readFile ../../nix/sources.json)).emanote.rev;
emanote = builtins.getFlake "github:srid/emanote/${emanote_commit}";
in {
imports = [emanote.homeManagerModule];
services.emanote = {
enable = true;

View file

@ -6,6 +6,6 @@ in {
inherit unstable;
unstableHaskellPackages = unstable.haskellPackages;
unstableGhc = unstable.ghc;
inherit (unstable) nix home-assistant vscode-extensions vscodium cachix cabal2nix chrysalis nil taplo tut;
inherit (unstable) nix home-assistant vscode-extensions vscodium cachix cabal2nix chrysalis nil taplo tut emanote;
nixpkgs-bot = bot.packages.x86_64-linux.default;
}

View file

@ -1,6 +1,5 @@
self: super: {
# pkgs assumed to be present on a non nixos host
nixFlakes = self.writeShellScriptBin "flix" ''exec ${self.nix}/bin/nix --log-format bar-with-logs "$@"'';
core-system-pkgs = {
inherit
(self)
@ -148,7 +147,6 @@ self: super: {
lazygit
gh
;
obelisk = (import self.sources.obelisk {}).command;
pass-fzf = self.writeShellScriptBin "pass-fzf" (builtins.readFile ./pass-fzf.sh);
};
accounting-pkgs = {

View file

@ -1,3 +0,0 @@
self: super: {
taskwarrior-git = self.haskellPackages.callCabal2nix "taskwarrior-git" self.sources.taskwarrior-git-backend {};
}