Fix structure levels

This commit is contained in:
Evie Litherland-Smith 2023-04-23 14:53:55 +01:00
parent e35a926cb6
commit 46f9a593ff
25 changed files with 23 additions and 20 deletions

View file

@ -1,6 +1,6 @@
{ ... }: {
imports = [
./env/personal.nix
./env/xenia.nix
./tui
];
home.stateVersion = "22.11";

View file

@ -1,21 +1,8 @@
{ ... }:
{
imports = [
./env/personal.nix
./env/tux.nix
./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";
}

View file

@ -1,6 +1,6 @@
{ ... }: {
imports = [
./env/personal.nix
./env/user/xenia.nix
./tui
];
home.stateVersion = "22.11";

View file

@ -1,6 +1,6 @@
{ ... }: {
imports = [
./env/personal.nix
./env/xenia.nix
./desktop/gtk.nix
./desktop/wayland.nix
./tui

View file

@ -1,6 +1,6 @@
{ ... }:
{
imports = [ ./common ];
imports = [ ../default.nix ];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "elitherl";

16
home/env/user/tux.nix vendored Normal file
View 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)"
'';
}

View file

@ -1,6 +1,6 @@
{ ... }:
{
imports = [ ./common ];
imports = [ ../default.nix ];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "xenia";

View file

@ -2,7 +2,7 @@
imports = [
./desktop/gtk.nix
./desktop/wayland.nix
./env/work.nix
./env/elitherl.nix
./tui
./gui/chromium-wayland.nix
./gui/neovide.nix