Added khal
This commit is contained in:
parent
dd8353b7d4
commit
227a018fb9
21
flake.lock
21
flake.lock
|
@ -81,6 +81,26 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"disko": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs-unstable"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1689324677,
|
||||
"narHash": "sha256-83DCDJwBkulQFQESe37+tG0qUb8JkQLJHJ3Qn7iGx7Q=",
|
||||
"owner": "nix-community",
|
||||
"repo": "disko",
|
||||
"rev": "7eb09408393faa5b8f3b3524c39cb93d938e8d04",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"repo": "disko",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"firefox-addons": {
|
||||
"inputs": {
|
||||
"flake-utils": "flake-utils",
|
||||
|
@ -818,6 +838,7 @@
|
|||
"inputs": {
|
||||
"agenix": "agenix",
|
||||
"catppuccin-base16": "catppuccin-base16",
|
||||
"disko": "disko",
|
||||
"firefox-addons": "firefox-addons",
|
||||
"grub2-themes": "grub2-themes",
|
||||
"home-manager": "home-manager_2",
|
||||
|
|
16
home/features/cli/khal.nix
Normal file
16
home/features/cli/khal.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [ khal ];
|
||||
xdg.configFile."khal/config".text = ''
|
||||
[calendars]
|
||||
[[calendars]]
|
||||
path = ~/Calendars/*
|
||||
type = discover
|
||||
|
||||
[locale]
|
||||
timeformat = %H:%M
|
||||
dateformat = %d/%m/%Y
|
||||
'';
|
||||
satellite.persistence.at.data.apps.khal.directories = [
|
||||
"Calendars"
|
||||
];
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
# TODO(imperanence): handle persistence of things like harpoon, lazy, etc
|
||||
{ pkgs, upkgs, lib, config, paths, inputs, ... }:
|
||||
{ pkgs, upkgs, lib, config, inputs, ... }:
|
||||
let
|
||||
# {{{ extraPackages
|
||||
extraPackages = with pkgs; [
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
./features/desktop/spotify.nix
|
||||
./features/desktop/firefox
|
||||
./features/desktop/discord
|
||||
./features/cli/khal.nix
|
||||
|
||||
./features/xorg/xmonad.nix
|
||||
./features/wayland/hyprland
|
||||
|
|
Loading…
Reference in a new issue