setups/home-manager: update foo-dogsquared user

This commit is contained in:
Gabriel Arazas 2023-12-24 18:16:07 +08:00
parent 4b34e0398b
commit 06c30c967b
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -4,6 +4,25 @@
{ lib, inputs }:
{
foo-dogsquared.systems = [ "aarch64-linux" "x86_64-linux" ];
foo-dogsquared = {
systems = [ "aarch64-linux" "x86_64-linux" ];
modules = [
inputs.nur.hmModules.nur
({ config, ... }: {
nixpkgs.overlays = [
# Neovim nightly!
inputs.neovim-nightly-overlay.overlays.default
# Emacs unstable version!
inputs.emacs-overlay.overlays.default
# Get all of the NUR.
inputs.nur.overlay
];
})
];
};
plover.systems = [ "x86_64-linux" ];
}