diff options
author | Franck Cuny <fcuny@roblox.com> | 2024-03-06 09:00:20 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@roblox.com> | 2024-03-06 09:00:20 -0800 |
commit | 80ac187a8df4f6d500eed135d215e5dc933dd94e (patch) | |
tree | ef00c9ab9d80676f8728a9de902a8085edbbd895 /hosts | |
parent | enable copilot for vscode (diff) | |
download | world-80ac187a8df4f6d500eed135d215e5dc933dd94e.tar.gz |
install seqstat on the work profile
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/work/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/work/default.nix b/hosts/work/default.nix index ae9a765..97777e5 100644 --- a/hosts/work/default.nix +++ b/hosts/work/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, self, ... }: let user = "fcuny"; in { services.nix-daemon.enable = true; @@ -31,5 +31,5 @@ let user = "fcuny"; in home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; - home-manager.users.fcuny = import ../../nix/profiles/home-manager/work.nix; + home-manager.users.fcuny = import ../../nix/profiles/home-manager/work.nix { inherit pkgs self; }; } |