WIP started reorg for absorbing john-pc-ubuntu
This commit is contained in:
5
modules/home-manager/home.nix
Normal file
5
modules/home-manager/home.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
flake.homeModules.home = {
|
||||||
|
# TODO: Port custom settings from the old top-level ./home.nix into here.
|
||||||
|
};
|
||||||
|
}
|
||||||
5
modules/home-manager/onepassword.nix
Normal file
5
modules/home-manager/onepassword.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
flake.homeModules.onepassword = {
|
||||||
|
# TODO: Port `_1password = true` behavior into an explicit Home Manager module.
|
||||||
|
};
|
||||||
|
}
|
||||||
5
modules/home-manager/sublime.nix
Normal file
5
modules/home-manager/sublime.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
flake.homeModules.sublime = {
|
||||||
|
# TODO: Port `graphical.sublime = true` into an explicit Home Manager module.
|
||||||
|
};
|
||||||
|
}
|
||||||
5
modules/home-manager/users/sydney.nix
Normal file
5
modules/home-manager/users/sydney.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
flake.homeModules.onepassword = {
|
||||||
|
# TODO: Port `_1password = true` behavior into an explicit Home Manager module.
|
||||||
|
};
|
||||||
|
}
|
||||||
24
modules/hosts/john-pc-ubuntu.nix
Normal file
24
modules/hosts/john-pc-ubuntu.nix
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{ 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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user