summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-10-16 23:23:30 +0200
committerMike Vink <mike1994vink@gmail.com>2023-10-16 23:25:45 +0200
commit623656882262442145cce9f375acfd8483ea4970 (patch)
tree01a37f3d096f6fef36d3001be529e9bfc8858f05 /flake.nix
parentd885924961b3c4b3db76b78e603c0cc84ff88aae (diff)
use name from library
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 4d24611..42aba79 100644
--- a/flake.nix
+++ b/flake.nix
@@ -38,7 +38,7 @@
++ [({ config, ... }: {
nixpkgs.overlays = with lib; [(composeManyExtensions [
(import ./overlays/vimPlugins.nix {inherit pkgs;})
- (import ./overlays/suckless.nix {inherit pkgs; home = config.users.users.mike.home;})
+ (import ./overlays/suckless.nix {inherit pkgs; home = config.ivi.home;})
])];})
];
};
@@ -58,7 +58,7 @@
{
hostname = hostname + "." + ivi.domain;
sshUser = "root";
- profiles.system.path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.${hostname}
+ profiles.system.path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.${hostname};
})
(filterAttrs (_: machine: machine.isDeployed) ivi.machines);