sgx-azure

Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
Harald Hoyer 2024-03-06 19:54:33 +01:00
parent c405c2af83
commit 108136a1d1
2 changed files with 5 additions and 10 deletions

View file

@ -56,10 +56,6 @@
allowUnfree = true; allowUnfree = true;
}; };
homes.users."harald@nix.fedora.fritz.box".modules = with inputs; [
neovim-flake.homeManagerModules.default
];
homes.users."harald@sgx-nixos".modules = with inputs; [ homes.users."harald@sgx-nixos".modules = with inputs; [
neovim-flake.homeManagerModules.default neovim-flake.homeManagerModules.default
]; ];
@ -76,6 +72,10 @@
neovim-flake.homeManagerModules.default neovim-flake.homeManagerModules.default
]; ];
homes.users."harald@sgx-azure".modules = with inputs; [
neovim-flake.homeManagerModules.default
];
# homes.modules = with inputs; [ # homes.modules = with inputs; [
# neovim-flake.homeManagerModules.default # neovim-flake.homeManagerModules.default
# ]; # ];

View file

@ -2,14 +2,12 @@
, pkgs , pkgs
, config , config
, nixpkgs , nixpkgs
, osConfig ? { }
, format ? "unknown"
, ... , ...
}: }:
{ {
home = { home = {
username = "harald"; username = "harald";
homeDirectory = "/home/${config.home.username}/nix"; homeDirectory = "/home/${config.home.username}";
stateVersion = "23.11"; # Please read the comment before changing. stateVersion = "23.11"; # Please read the comment before changing.
sessionPath = [ "$HOME/bin" ]; sessionPath = [ "$HOME/bin" ];
}; };
@ -28,10 +26,7 @@
git.enable = true; git.enable = true;
direnv.enable = true; direnv.enable = true;
ssh.enable = true; ssh.enable = true;
# jetbrains.enable = true;
}; };
}; };
fonts.fontconfig.enable = true;
} }