desktop flakeModule
This commit is contained in:
@@ -1,8 +1,9 @@
|
|||||||
{ inputs, self, ... }:
|
{ inputs, ... }:
|
||||||
{
|
{
|
||||||
flake.homeConfigurations.desktop = inputs.home-manager.lib.homeManagerConfiguration {
|
flake.homeModules.desktop =
|
||||||
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
|
{ pkgs, ... } :
|
||||||
modules = with inputs.self.homeModules; [
|
{
|
||||||
|
imports = with inputs.self.homeModules; [
|
||||||
john
|
john
|
||||||
ssh
|
ssh
|
||||||
git
|
git
|
||||||
@@ -12,4 +13,12 @@
|
|||||||
zsh
|
zsh
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
flake.homeConfigurations.desktop = inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
|
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
|
||||||
|
modules = with inputs.self.homeModules; [
|
||||||
|
desktop
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user