summaryrefslogtreecommitdiff
path: root/home-manager/home.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-09-30 03:52:11 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2023-09-30 03:52:11 -0600
commitd9e3d1977e79ea36da7bc615699b67f431913c23 (patch)
tree3627bb75e08a8a88c3706e9d8b96751fbf62143f /home-manager/home.nix
parent8f317ee332fffe934ec8bf61a77efc1eb57bb9df (diff)
adding theming and config from ryan4yin nix-config on git
Diffstat (limited to 'home-manager/home.nix')
-rw-r--r--home-manager/home.nix22
1 files changed, 7 insertions, 15 deletions
diff --git a/home-manager/home.nix b/home-manager/home.nix
index 8ce8d5e..02785bb 100644
--- a/home-manager/home.nix
+++ b/home-manager/home.nix
@@ -4,9 +4,13 @@
# unstable = import <nixpkgs-unstable>{};
# in
{
- # imports = [
- # (import "${home-manager}/nixos")
- # ];
+ imports = [
+ ./hyprland.nix
+ ./starship.nix
+ ./btop.nix
+ ./helix.nix
+ ./shell.nix
+ ];
nixpkgs = {
# texlive.combined.scheme-medium;
@@ -126,18 +130,6 @@
};
};
- starship = {
- enable = true;
- settings = {
- command_timeout = 1000;
- };
- };
-
- helix = {
- enable = true;
- # defaultEditor = true;
- settings.theme = "base16_transparent";
- };
# Let Home Manager install and manage itself.
# home-manager.enable = true;
};