mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 02:40:14 +00:00
refactor arguments to options
also change theme to colorscheme
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
{ pkgs, identity, ... }: {
|
||||
{ config, pkgs, ... }: {
|
||||
|
||||
home-manager.users.${identity.user} = {
|
||||
home-manager.users.${config.user} = {
|
||||
|
||||
home.packages = with pkgs; [
|
||||
neovim
|
||||
|
@ -1,8 +1,9 @@
|
||||
{ identity, ... }: {
|
||||
home-manager.users.${identity.user} = {
|
||||
{ config, ... }: {
|
||||
|
||||
home-manager.users.${config.user} = {
|
||||
|
||||
home.sessionVariables = {
|
||||
NOTES_PATH = "/home/${identity.user}/dev/personal/notes";
|
||||
NOTES_PATH = "/home/${config.user}/dev/personal/notes";
|
||||
};
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user