add hoard
This commit is contained in:
parent
a3647d12b7
commit
f778c239d6
2 changed files with 22 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
||||||
./browser.nix
|
./browser.nix
|
||||||
./cachix.nix
|
./cachix.nix
|
||||||
./direnv.nix
|
./direnv.nix
|
||||||
|
./hoard.nix
|
||||||
./dnsmasq.nix
|
./dnsmasq.nix
|
||||||
./home-manager.nix
|
./home-manager.nix
|
||||||
./mail-stuff.nix
|
./mail-stuff.nix
|
||||||
|
|
21
nixos/system/desktop/hoard.nix
Normal file
21
nixos/system/desktop/hoard.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
package = pkgs.unstable.hoard;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
environment.systemPackages = [ package ];
|
||||||
|
|
||||||
|
#home-manager.users.mainUser.programs.direnv.enable = true;
|
||||||
|
|
||||||
|
#programs.zsh.interactiveShellInit = ''
|
||||||
|
# source ${package}/src/shell/hoard.zsh
|
||||||
|
#'';
|
||||||
|
#programs.bash.interactiveShellInit = ''
|
||||||
|
# source ${package}/src/shell/hoard.bash
|
||||||
|
#'';
|
||||||
|
|
||||||
|
backup.dirs = [
|
||||||
|
"${config.users.users.mainUser.home}/.config/hoard"
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue