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