diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-05-21 15:54:05 -0700 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-05-21 15:54:05 -0700 |
| commit | 082cb3a8847a57d04605f52c36951b7cae0b3868 (patch) | |
| tree | b628fe6db00b31fa43990f72987c6e40fa8b2709 /home/trent/common/core/default.nix | |
| parent | 7f73c9eee033fbc2febcdeb13d891439c8f792b8 (diff) | |
| download | nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.gz nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.bz2 nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.lz nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.xz nix-082cb3a8847a57d04605f52c36951b7cae0b3868.tar.zst nix-082cb3a8847a57d04605f52c36951b7cae0b3868.zip | |
Add some missing prometheus configuration
Diffstat (limited to 'home/trent/common/core/default.nix')
| -rw-r--r-- | home/trent/common/core/default.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/home/trent/common/core/default.nix b/home/trent/common/core/default.nix new file mode 100644 index 0000000..e8e9646 --- /dev/null +++ b/home/trent/common/core/default.nix @@ -0,0 +1,32 @@ +{ config, lib, pkgs, outputs, ... }: +{ + imports = [ + ./bash.nix + ./git.nix + ./tmux + ./vim + ./zsh + ]; + + home = { + username = lib.mkDefault "trent"; + homeDirectory = lib.mkDefault "/home/${config.home.username}"; + stateVersion = lib.mkDefault "26.05"; + }; + + #home.packages = builtins.attrValues { + # inherit (pkgs) + # wget + # zip; + #}; + + nix = { + package = lib.mkDefault pkgs.nix; + settings = { + experimental-features = [ "nix-command" "flakes" ]; + warn-dirty = false; + }; + }; + + programs.home-manager.enable = true; +} |
