home.nix cleanup
This commit is contained in:
parent
650492b493
commit
4ec6ff40e1
1 changed files with 23 additions and 22 deletions
|
@ -1,30 +1,31 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.username = "toph";
|
home = {
|
||||||
home.homeDirectory = "/home/toph";
|
username = "toph";
|
||||||
home.stateVersion = "24.05";
|
homeDirectory = "/home/toph";
|
||||||
|
stateVersion = "24.05";
|
||||||
|
# Packages
|
||||||
|
packages = with pkgs; [
|
||||||
|
fastfetch
|
||||||
|
fish
|
||||||
|
fishPlugins.grc
|
||||||
|
fishPlugins.tide
|
||||||
|
grc
|
||||||
|
];
|
||||||
|
|
||||||
# Packages
|
file = {
|
||||||
home.packages = with pkgs; [
|
# ".config" = {
|
||||||
fastfetch
|
# recursive = true;
|
||||||
fish
|
# source = ../.config;
|
||||||
fishPlugins.grc
|
# };
|
||||||
fishPlugins.tide
|
};
|
||||||
grc
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file = {
|
sessionVariables = {
|
||||||
# ".config" = {
|
EDITOR = "micro";
|
||||||
# recursive = true;
|
VISUAL = "micro";
|
||||||
# source = ../.config;
|
XDG_CONFIG_HOME = "$HOME/.config";
|
||||||
# };
|
};
|
||||||
};
|
|
||||||
|
|
||||||
home.sessionVariables = {
|
|
||||||
EDITOR = "micro";
|
|
||||||
VISUAL = "micro";
|
|
||||||
XDG_CONFIG_HOME = "$HOME/.config";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# Programs and Services
|
# Programs and Services
|
||||||
|
|
Loading…
Add table
Reference in a new issue