From fdb1937e1cf7155869f6f6837b42cb925ff1b8bc Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Sat, 3 Jun 2023 00:21:43 -0400 Subject: [PATCH] Autostart albert --- home/default.nix | 10 +++++++--- machines/aether/nixos-wsl/modules/build-tarball.nix | 3 ++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/home/default.nix b/home/default.nix index 3acbb5e..e75a652 100644 --- a/home/default.nix +++ b/home/default.nix @@ -463,7 +463,11 @@ in { }; }; - home.file.".config/nvim/lua".source = ./nvim/lua; - - home.file.".aws/config".source = ./.aws/config; + home.file = { + ".config/nvim/lua".source = ./nvim/lua; + ".aws/config".source = ./.aws/config; + ".config/autostart/albert.desktop" = { + source = pkgs.albert + "/share/applications/albert.desktop"; + }; + }; } diff --git a/machines/aether/nixos-wsl/modules/build-tarball.nix b/machines/aether/nixos-wsl/modules/build-tarball.nix index 23aa8ce..3980939 100644 --- a/machines/aether/nixos-wsl/modules/build-tarball.nix +++ b/machines/aether/nixos-wsl/modules/build-tarball.nix @@ -7,7 +7,8 @@ with builtins; with lib; let pkgs2storeContents = l: - map (x: { + map + (x: { object = x; symlink = "none"; })