chore: mini restructure, move home to top level

This commit is contained in:
notohh 2023-03-07 16:03:15 -05:00
parent 1bbfd212d0
commit 4ee8d5931d
Signed by: notohh
GPG key ID: BD47506D475EE86D
30 changed files with 35 additions and 34 deletions

View file

@ -7,12 +7,13 @@ snowflake
## :open_book: Table of contents
#### will be expanded as i tack on more modules and things get more complex obviously
+ :house_with_garden: [home](home) - houses my dots
+ :computer: [hosts](hosts)
- :full_moon: [tsuki](hosts/tsuki) - my main machine config
- :princess: [hime](hosts/hime) - my server config
- :white_flower: [sutakku](hosts/sutakku) - *arr stack vm
- :white_flower: [sutakku](hosts/sutakku) - (currently) my *arr stack vm
+ :electric_plug: [modules](modules)
- :house_with_garden: [home](modules/home) - houses my dots
- :scroll: [services](modules/services) - houses services
+ :airplane: [overlays](overlays) - will house overlays eventually
+ :package: [pkgs](pkgs) - will house pkgs eventually
+ :lock: [secrets](secrets) - houses my secrets
@ -24,4 +25,4 @@ snowflake
+ [NobbZ](https://github.com/NobbZ) - general nix assistance
+ [MatthiasBenaets](https://github.com/MatthiasBenaets) - amazing nixos introduction video
+ [sioodmy](https://github.com/sioodmy) - general dotfile stuff
+ [hlissner](https://github.com/hlissner) - [security.nix](modules/security.nix)
+ [hlissner](https://github.com/hlissner) - [security.nix](modules/services/security.nix)

13
home/default.nix Normal file
View file

@ -0,0 +1,13 @@
{
default,
...
}: {
imports = [
./nushell
./starship
./helix
./git
./lazygit
];
}

View file

@ -4,7 +4,7 @@
imports =
[
./hardware-configuration.nix
../common
../../modules/services
];
boot.loader = {

View file

@ -3,7 +3,7 @@
{
imports = [
../../modules/common.nix
../../home
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;

View file

@ -4,7 +4,7 @@
imports =
[
./hardware-configuration.nix
../common
../../home
];
boot.loader = {

View file

@ -3,7 +3,7 @@
{
imports = [
../../modules/common.nix
../../home
];
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;

View file

@ -4,8 +4,8 @@
imports =
[
./hardware-configuration.nix
../../modules/home/wayland
../common
../../home/wayland
../../modules/services
];
# bootloader

View file

@ -3,15 +3,15 @@
{
imports = [
../../modules/common.nix
../../modules/home/wezterm
../../modules/home/zathura
../../modules/home/gtk
../../modules/home/dunst
../../modules/home/lf
../../modules/home/mpv
../../modules/home/waybar
../../modules/home/wayland/hyprland
../../home
../../home/wezterm
../../home/zathura
../../home/gtk
../../home/dunst
../../home/lf
../../home/mpv
../../home/waybar
../../home/wayland/hyprland
];
systemd.user.startServices = "sd-switch";

View file

@ -1,13 +0,0 @@
{
default,
...
}: {
imports = [
./home/nushell
./home/starship
./home/helix
./home/git
./home/lazygit
];
}

View file

@ -2,7 +2,7 @@
default,
...
}: {
imports = [
imports = [
./tailscale.nix
./security.nix
];