ubuntu works
This commit is contained in:
parent
20389d4f53
commit
91f3c2a716
@ -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";
|
||||||
|
@ -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";
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{ pkgs, config, lib, ... }:
|
{ pkgs, config, lib, ... }:
|
||||||
{
|
{
|
||||||
services.nix-daemon.enable = true;
|
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
}
|
}
|
||||||
|
@ -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 = {
|
];
|
||||||
XDG_CONFIG_HOME = "/home/tyrel/.config";
|
home.sessionVariables = {
|
||||||
};
|
XDG_CONFIG_HOME = "/home/tyrel/.config";
|
||||||
|
};
|
||||||
|
|
||||||
}; # -- HomeManager
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -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" = {
|
||||||
|
Loading…
Reference in New Issue
Block a user