Fix structure levels
This commit is contained in:
parent
e35a926cb6
commit
46f9a593ff
|
@ -1,6 +1,6 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./env/personal.nix
|
./env/xenia.nix
|
||||||
./tui
|
./tui
|
||||||
];
|
];
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
|
|
|
@ -1,21 +1,8 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./env/personal.nix
|
./env/tux.nix
|
||||||
./tui
|
./tui
|
||||||
];
|
];
|
||||||
# Home Manager needs a bit of information about you and the
|
|
||||||
# paths it should manage.
|
|
||||||
home.username = "tux";
|
|
||||||
home.homeDirectory = "/Users/tux";
|
|
||||||
|
|
||||||
programs.git = {
|
|
||||||
userEmail = "evie@xenia.me.uk";
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.zsh.envExtra = ''
|
|
||||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
||||||
'';
|
|
||||||
|
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./env/personal.nix
|
./env/user/xenia.nix
|
||||||
./tui
|
./tui
|
||||||
];
|
];
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./env/personal.nix
|
./env/xenia.nix
|
||||||
./desktop/gtk.nix
|
./desktop/gtk.nix
|
||||||
./desktop/wayland.nix
|
./desktop/wayland.nix
|
||||||
./tui
|
./tui
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [ ./common ];
|
imports = [ ../default.nix ];
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
# paths it should manage.
|
# paths it should manage.
|
||||||
home.username = "elitherl";
|
home.username = "elitherl";
|
16
home/env/user/tux.nix
vendored
Normal file
16
home/env/user/tux.nix
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [ ../default.nix ];
|
||||||
|
# Home Manager needs a bit of information about you and the
|
||||||
|
# paths it should manage.
|
||||||
|
home.username = "tux";
|
||||||
|
home.homeDirectory = "/Users/tux";
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
userEmail = "evie@xenia.me.uk";
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.zsh.envExtra = ''
|
||||||
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||||
|
'';
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [ ./common ];
|
imports = [ ../default.nix ];
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
# paths it should manage.
|
# paths it should manage.
|
||||||
home.username = "xenia";
|
home.username = "xenia";
|
|
@ -2,7 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./desktop/gtk.nix
|
./desktop/gtk.nix
|
||||||
./desktop/wayland.nix
|
./desktop/wayland.nix
|
||||||
./env/work.nix
|
./env/elitherl.nix
|
||||||
./tui
|
./tui
|
||||||
./gui/chromium-wayland.nix
|
./gui/chromium-wayland.nix
|
||||||
./gui/neovide.nix
|
./gui/neovide.nix
|
||||||
|
|
Loading…
Reference in a new issue