initial commit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.username = "synchronous";
|
||||
home.homeDirectory = "/home/synchronous";
|
||||
home.stateVersion = "25.11";
|
||||
imports = [
|
||||
./programs/programs.nix
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
SHELL = "/etc/profiles/per-user/synchronous/bin/zsh"; # just zsh no longer works?
|
||||
HOME = "/home/synchronous";
|
||||
# XDG_CACHE_HOME = "$HOME/.cache";
|
||||
DBUS_SESSION_BUS_ADDRESS = "unix:path=$XDG_RUNTIME_DIR/bus";
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.packages = with pkgs;
|
||||
[
|
||||
netcat
|
||||
neovim
|
||||
firefox
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user