Added sops, updated readme, added main config
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{ config, lib, pkgs, inputs, extraHomeModules, ... }:
|
||||
|
||||
let
|
||||
username = "susano";
|
||||
in {
|
||||
imports = [
|
||||
];
|
||||
|
||||
|
||||
home = {
|
||||
stateVersion = "25.05";
|
||||
username = username;
|
||||
homeDirectory = "/home/${username}";
|
||||
};
|
||||
|
||||
dov = {
|
||||
shell = {
|
||||
zsh = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
ll = "eza -al";
|
||||
sc = "source $HOME/.zshrc";
|
||||
psax = "ps ax | grep";
|
||||
cp = "rsync -ah --progress";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
eza
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user