From 2950d3d8dcf76e741b650a9d42038cfed475e87a Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Fri, 14 Oct 2022 14:17:50 +0200 Subject: [PATCH] Added giulioMac user config --- flake.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 0446be6..e1bc4ab 100644 --- a/flake.nix +++ b/flake.nix @@ -1,9 +1,9 @@ { inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixos-unstable.url = "github:NixOS/nixpkgs/master"; home-manager = { - url = "github:rycee/home-manager/release-22.05"; + url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; vim-extra-plugins.url = "github:m15a/nixpkgs-vim-extra-plugins"; @@ -71,5 +71,9 @@ users = [ ]; }; }; + homeConfigurations.giulioMac = utilsDarwin.user.mkHMUser { + name = "giulio"; + roles = [ "ssh" ]; + }; }; }