Added khal
This commit is contained in:
parent
dd8353b7d4
commit
227a018fb9
21
flake.lock
21
flake.lock
|
@ -81,6 +81,26 @@
|
||||||
"type": "github"
|
"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": {
|
"firefox-addons": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-utils": "flake-utils",
|
"flake-utils": "flake-utils",
|
||||||
|
@ -818,6 +838,7 @@
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"agenix": "agenix",
|
"agenix": "agenix",
|
||||||
"catppuccin-base16": "catppuccin-base16",
|
"catppuccin-base16": "catppuccin-base16",
|
||||||
|
"disko": "disko",
|
||||||
"firefox-addons": "firefox-addons",
|
"firefox-addons": "firefox-addons",
|
||||||
"grub2-themes": "grub2-themes",
|
"grub2-themes": "grub2-themes",
|
||||||
"home-manager": "home-manager_2",
|
"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
|
# TODO(imperanence): handle persistence of things like harpoon, lazy, etc
|
||||||
{ pkgs, upkgs, lib, config, paths, inputs, ... }:
|
{ pkgs, upkgs, lib, config, inputs, ... }:
|
||||||
let
|
let
|
||||||
# {{{ extraPackages
|
# {{{ extraPackages
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
./features/desktop/spotify.nix
|
./features/desktop/spotify.nix
|
||||||
./features/desktop/firefox
|
./features/desktop/firefox
|
||||||
./features/desktop/discord
|
./features/desktop/discord
|
||||||
|
./features/cli/khal.nix
|
||||||
|
|
||||||
./features/xorg/xmonad.nix
|
./features/xorg/xmonad.nix
|
||||||
./features/wayland/hyprland
|
./features/wayland/hyprland
|
||||||
|
|
Loading…
Reference in a new issue