ubuntu works
This commit is contained in:
parent
20389d4f53
commit
91f3c2a716
@ -17,7 +17,7 @@
|
||||
inherit pkgs;
|
||||
modules = [
|
||||
../hosts/blackbox-jr/default.nix
|
||||
../hosts/_common/home-manager.nix
|
||||
../hosts/blackbox-jr/home-manager.nix
|
||||
{
|
||||
home = {
|
||||
homeDirectory = "/home/tyrel";
|
||||
|
@ -2,7 +2,6 @@
|
||||
{
|
||||
home.stateVersion = "22.05";
|
||||
home.sessionVariables = {
|
||||
XDG_CONFIG_HOME = "/Users/tyrel/.config";
|
||||
PAGER = "less -R";
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
@ -1,5 +1,4 @@
|
||||
{ pkgs, config, lib, ... }:
|
||||
{
|
||||
services.nix-daemon.enable = true;
|
||||
programs.zsh.enable = true;
|
||||
}
|
||||
|
@ -1,14 +1,14 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.tyrel = { pkgs, ... }: {
|
||||
programs.home-manager.enable = true;
|
||||
home.stateVersion = "22.05";
|
||||
home.sessionVariables = {
|
||||
XDG_CONFIG_HOME = "/home/tyrel/.config";
|
||||
};
|
||||
# Common Imports
|
||||
imports = [
|
||||
../_common/home.nix
|
||||
../_common/programs.nix
|
||||
../_common/xdg.nix
|
||||
];
|
||||
home.sessionVariables = {
|
||||
XDG_CONFIG_HOME = "/home/tyrel/.config";
|
||||
};
|
||||
|
||||
}; # -- HomeManager
|
||||
|
||||
}
|
||||
|
@ -9,6 +9,9 @@
|
||||
../_common/programs.nix
|
||||
../_common/xdg.nix
|
||||
];
|
||||
home.sessionVariables = {
|
||||
XDG_CONFIG_HOME = "/Users/tyrel/.config";
|
||||
};
|
||||
|
||||
# XDG CONFIGS
|
||||
xdg.configFile."karabiner" = {
|
||||
|
Loading…
Reference in New Issue
Block a user