This commit is contained in:
John Lancaster
2024-12-07 14:41:23 -06:00
parent f303b9ec57
commit 679f8bfca0
5 changed files with 7 additions and 7 deletions

View File

@@ -36,7 +36,7 @@
specialArgs = {inherit inputs outputs;};
# pkgs = import nixpkgs { system = "x86_64-linux"; };
modules = [
./configuration.nix # > Our main nixos configuration file <
./nixos/configuration.nix # > Our main nixos configuration file <
"${nixpkgs}/nixos/modules/virtualisation/proxmox-lxc.nix"
({ ... }: {
nixpkgs.hostPlatform = "${system}";
@@ -45,7 +45,7 @@
})
vscode-server.nixosModules.default
({ config, pkgs, ... }: {services.vscode-server.enable = true;})
(import ./loki.nix {
(import ./nixos/loki.nix {
pkgs = nixpkgs.legacyPackages.${system};
inherit lokiPort;
inherit lokiUser;
@@ -61,7 +61,7 @@
"root@${hostname}" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.${system};
extraSpecialArgs = {inherit inputs outputs;};
modules = [(import ./git.nix { repoPath = "${lokiPath}"; })];
modules = [(import ./home-manager/git.nix { repoPath = "${lokiPath}"; })];
};
# FIXME replace with your username@hostname
@@ -70,8 +70,8 @@
extraSpecialArgs = {inherit inputs outputs;};
# > Our main home-manager configuration file <
modules = [
(import ./home.nix { user = "${lokiUser}"; repoPath = "${lokiPath}"; })
(import ./git.nix { repoPath = "${lokiPath}"; })
(import ./home-manager/home.nix { user = "${lokiUser}"; repoPath = "${lokiPath}"; })
(import ./home-manager/git.nix { repoPath = "${lokiPath}"; })
];
};
};