chore: mini restructure, move home to top level
This commit is contained in:
parent
1bbfd212d0
commit
4ee8d5931d
30 changed files with 35 additions and 34 deletions
|
@ -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
13
home/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
default,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./nushell
|
||||
./starship
|
||||
./helix
|
||||
./git
|
||||
./lazygit
|
||||
];
|
||||
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../common
|
||||
../../modules/services
|
||||
];
|
||||
|
||||
boot.loader = {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
|
||||
imports = [
|
||||
../../modules/common.nix
|
||||
../../home
|
||||
];
|
||||
systemd.user.startServices = "sd-switch";
|
||||
programs.home-manager.enable = true;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../common
|
||||
../../home
|
||||
];
|
||||
|
||||
boot.loader = {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
|
||||
imports = [
|
||||
../../modules/common.nix
|
||||
../../home
|
||||
];
|
||||
systemd.user.startServices = "sd-switch";
|
||||
programs.home-manager.enable = true;
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../../modules/home/wayland
|
||||
../common
|
||||
../../home/wayland
|
||||
../../modules/services
|
||||
];
|
||||
|
||||
# bootloader
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
default,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./home/nushell
|
||||
./home/starship
|
||||
./home/helix
|
||||
./home/git
|
||||
./home/lazygit
|
||||
];
|
||||
|
||||
}
|
|
@ -2,8 +2,8 @@
|
|||
default,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
imports = [
|
||||
./tailscale.nix
|
||||
./security.nix
|
||||
];
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue