25 lines
574 B
Nix
25 lines
574 B
Nix
{ inputs, ... }:
|
|
{
|
|
flake.homeModules."john-pc-ubuntu" = {
|
|
imports = with inputs.self.homeModules; [
|
|
desktop
|
|
home
|
|
onepassword
|
|
sublime
|
|
# resticprofile
|
|
];
|
|
|
|
# TODO: Add host-specific settings here:
|
|
# - sops secret for `restic_password/john_ubuntu`
|
|
# - resticprofile profile definition
|
|
# - zsh RESTIC* session variables
|
|
};
|
|
|
|
flake.homeConfigurations."john-pc-ubuntu" = inputs.home-manager.lib.homeManagerConfiguration {
|
|
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
|
|
modules = [
|
|
inputs.self.homeModules."john-pc-ubuntu"
|
|
];
|
|
};
|
|
}
|