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, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.username = "toph";
|
home = {
|
||||||
home.homeDirectory = "/home/toph";
|
username = "toph";
|
||||||
home.stateVersion = "24.05";
|
homeDirectory = "/home/toph";
|
||||||
|
stateVersion = "24.05";
|
||||||
# Packages
|
# Packages
|
||||||
home.packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
fastfetch
|
fastfetch
|
||||||
fish
|
fish
|
||||||
fishPlugins.grc
|
fishPlugins.grc
|
||||||
|
@ -14,18 +14,19 @@
|
||||||
grc
|
grc
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file = {
|
file = {
|
||||||
# ".config" = {
|
# ".config" = {
|
||||||
# recursive = true;
|
# recursive = true;
|
||||||
# source = ../.config;
|
# source = ../.config;
|
||||||
# };
|
# };
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = {
|
sessionVariables = {
|
||||||
EDITOR = "micro";
|
EDITOR = "micro";
|
||||||
VISUAL = "micro";
|
VISUAL = "micro";
|
||||||
XDG_CONFIG_HOME = "$HOME/.config";
|
XDG_CONFIG_HOME = "$HOME/.config";
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Programs and Services
|
# Programs and Services
|
||||||
programs.fish = import ./fish.nix { inherit pkgs; };
|
programs.fish = import ./fish.nix { inherit pkgs; };
|
||||||
|
|
Loading…
Add table
Reference in a new issue