diff --git a/modules/home/home/default.nix b/modules/home/home/default.nix index 689957a..f6a3aa5 100644 --- a/modules/home/home/default.nix +++ b/modules/home/home/default.nix @@ -1,4 +1,3 @@ - { # Snowfall Lib provides a customized `lib` instance with access to your flake's library # as well as the libraries available from your flake's inputs. @@ -29,7 +28,8 @@ let inherit (lib.my-namespace) enabled; imp = config.my-namespace.home.impermanence.enable; -in { +in +{ config = { home = { packages = with pkgs; [ @@ -43,7 +43,7 @@ in { unzip zip ]; - sessionPath = ["$HOME/bin" "$HOME/.local/bin"]; + sessionPath = [ "$HOME/bin" "$HOME/.local/bin" ]; shellAliases = { # "df" = "duf -only local"; # "du" = "dust -xd1 --skip-total"; @@ -73,8 +73,6 @@ in { }; home-manager = enabled; }; - services = { - - }; + services = { }; }; } diff --git a/modules/nixos/nixos/default.nix b/modules/nixos/nixos/default.nix index dbf6ce0..9eae35e 100644 --- a/modules/nixos/nixos/default.nix +++ b/modules/nixos/nixos/default.nix @@ -32,14 +32,11 @@ let inherit (lib) mkIf; inherit (lib.my-namespace) enabled; -in { +in +{ config = { - boot = { - - }; - console = { - - }; + boot = { }; + console = { }; environment = { systemPackages = (with pkgs; [ @@ -49,8 +46,7 @@ in { bitwarden bitwarden-cli cowsay - ]); }; }; -} \ No newline at end of file +}