home: move around things a bit

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2024-06-01 16:57:00 +05:30
parent 48e46b465f
commit 684b9a41cc
12 changed files with 61 additions and 50 deletions

View File

@@ -1,9 +0,0 @@
{ lib, ... }:
{
options.natto.laptop = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether this device is a laptop or not";
};
}

View File

@@ -1,8 +0,0 @@
{ config, ... }:
{
programs = {
home-manager.enable = true;
password-store.enable = true;
direnv.enable = true;
};
}

View File

@@ -1,24 +0,0 @@
{ config, ... }:
{
programs.zsh = {
enable = true;
autocd = true;
history = rec {
expireDuplicatesFirst = true;
size = 30000;
save = size;
};
enableAutosuggestions = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
prezto = {
enable = true;
prompt.theme = "pure";
autosuggestions.color = "fg=yellow,bold";
utility.safeOps = false;
};
initExtra = ''
unsetopt extendedGlob
'';
};
}