home: use remote home manager config
This commit is contained in:
parent
227c761ebe
commit
045bea8c88
3 changed files with 116 additions and 29 deletions
17
flake.nix
17
flake.nix
|
@ -1,5 +1,15 @@
|
|||
{
|
||||
inputs = {
|
||||
nix-doom-emacs-unstraightened = {
|
||||
url = "github:marienz/nix-doom-emacs-unstraightened";
|
||||
# Optional, to download less. Neither the module nor the overlay uses this input.
|
||||
inputs.nixpkgs.follows = "";
|
||||
};
|
||||
nix-templates = {
|
||||
url = "git+https://git.xnia.org/evar/nix-templates";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
vscode-server.url = "github:nix-community/nixos-vscode-server";
|
||||
|
@ -28,9 +38,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
outputs = inputs @ {flake-parts, ...}:
|
||||
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||
systems = ["x86_64-linux"];
|
||||
outputs =
|
||||
inputs@{ flake-parts, ... }:
|
||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||
systems = [ "x86_64-linux" ];
|
||||
imports = [
|
||||
./systems
|
||||
./dev-shell
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue