Implement profile

This commit is contained in:
2026-02-27 16:05:00 +01:00
parent 52344e28b1
commit 6eb53c661a
7 changed files with 46 additions and 12 deletions

View File

@@ -1,4 +1,7 @@
{ pkgs, ... }:
{ config, pkgs, ... }:
let
profile = import ../profile.nix;
in
{
environment.systemPackages = with pkgs; [
@@ -64,7 +67,7 @@
};
};
home-manager.users.nichkara = { ... }: {
home-manager.users.${profile.username} = { ... }: {
programs.zsh = {
enable = true;
enableCompletion = true;
@@ -84,7 +87,25 @@
ignorePatterns = [ ];
saveNoDups = true;
ignoreAllDups = true;
};
};
oh-my-zsh = {
enable = true;
theme = "sonicradish";
plugins = [
"git"
"z"
"dotenv"
"battery"
"emoji"
"emoji-clock"
"fzf"
"kitty"
"themes"
"tmux"
"vi-mode"
];
};
setOptions = [
"HIST_IGNORE_ALL_DUPS"