Remove gomuks
This commit is contained in:
parent
18f2fb9207
commit
44ed9e9ac3
5 changed files with 0 additions and 31 deletions
|
@ -132,8 +132,6 @@ in
|
|||
workspace 1
|
||||
exec ${pkgs.firefox}/bin/firefox
|
||||
workspace 3
|
||||
exec ${pkgs.gomuks}/bin/gomuks
|
||||
workspace 3
|
||||
exec ${pkgs.teams}/bin/teams
|
||||
workspace 2
|
||||
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
docker.enable = true;
|
||||
eid.enable = true;
|
||||
git.email = "charlotte.vanpetegem@ugent.be";
|
||||
gomuks.enable = true;
|
||||
zfs = {
|
||||
enable = true;
|
||||
encrypted = true;
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
docker.enable = true;
|
||||
eid.enable = true;
|
||||
git.email = "charlotte@vanpetegem.me";
|
||||
gomuks.enable = true;
|
||||
minecraft.client = true;
|
||||
zeroad.enable = true;
|
||||
zfs = {
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
./emacs.nix
|
||||
./git.nix
|
||||
./global-mailer.nix
|
||||
./gomuks.nix
|
||||
./minecraft.nix
|
||||
./nix.nix
|
||||
./nginx.nix
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let cfg = config.chvp;
|
||||
in
|
||||
{
|
||||
options.chvp.gomuks.enable = lib.mkOption {
|
||||
default = false;
|
||||
example = true;
|
||||
};
|
||||
|
||||
config = lib.mkIf config.chvp.gomuks.enable {
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
gomuks = pkgs.writeShellScriptBin "gomuks" ''
|
||||
export GOMUKS_CACHE_HOME="${cfg.cachePrefix}${config.users.users.charlotte.home}/.cache/gomuks"
|
||||
export GOMUKS_DATA_HOME="${cfg.cachePrefix}${config.users.users.charlotte.home}/.local/share/gomuks"
|
||||
export GOMUKS_CONFIG_HOME="${cfg.cachePrefix}${config.users.users.charlotte.home}/.config/gomuks"
|
||||
${self.alacritty}/bin/alacritty -e ${super.gomuks}/bin/gomuks
|
||||
'';
|
||||
})
|
||||
];
|
||||
|
||||
home-manager.users.charlotte = { ... }: {
|
||||
home.packages = [ pkgs.gomuks ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue