ubuntu works

This commit is contained in:
Tyrel Souza 2023-01-02 12:04:37 -05:00
parent 20389d4f53
commit 91f3c2a716
5 changed files with 13 additions and 12 deletions

View File

@ -17,7 +17,7 @@
inherit pkgs; inherit pkgs;
modules = [ modules = [
../hosts/blackbox-jr/default.nix ../hosts/blackbox-jr/default.nix
../hosts/_common/home-manager.nix ../hosts/blackbox-jr/home-manager.nix
{ {
home = { home = {
homeDirectory = "/home/tyrel"; homeDirectory = "/home/tyrel";

View File

@ -2,7 +2,6 @@
{ {
home.stateVersion = "22.05"; home.stateVersion = "22.05";
home.sessionVariables = { home.sessionVariables = {
XDG_CONFIG_HOME = "/Users/tyrel/.config";
PAGER = "less -R"; PAGER = "less -R";
EDITOR = "nvim"; EDITOR = "nvim";
}; };

View File

@ -1,5 +1,4 @@
{ pkgs, config, lib, ... }: { pkgs, config, lib, ... }:
{ {
services.nix-daemon.enable = true;
programs.zsh.enable = true; programs.zsh.enable = true;
} }

View File

@ -1,14 +1,14 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home-manager.useGlobalPkgs = true; # Common Imports
home-manager.useUserPackages = true; imports = [
home-manager.users.tyrel = { pkgs, ... }: { ../_common/home.nix
programs.home-manager.enable = true; ../_common/programs.nix
home.stateVersion = "22.05"; ../_common/xdg.nix
];
home.sessionVariables = { home.sessionVariables = {
XDG_CONFIG_HOME = "/home/tyrel/.config"; XDG_CONFIG_HOME = "/home/tyrel/.config";
}; };
}; # -- HomeManager
} }

View File

@ -9,6 +9,9 @@
../_common/programs.nix ../_common/programs.nix
../_common/xdg.nix ../_common/xdg.nix
]; ];
home.sessionVariables = {
XDG_CONFIG_HOME = "/Users/tyrel/.config";
};
# XDG CONFIGS # XDG CONFIGS
xdg.configFile."karabiner" = { xdg.configFile."karabiner" = {