diff options
Diffstat (limited to 'macos.local/.flake/flake.nix.org')
-rw-r--r-- | macos.local/.flake/flake.nix.org | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/macos.local/.flake/flake.nix.org b/macos.local/.flake/flake.nix.org deleted file mode 100644 index 9a07ccb..0000000 --- a/macos.local/.flake/flake.nix.org +++ /dev/null @@ -1,34 +0,0 @@ -#+title: macOS Nix Configuration - -The root for my macOS nix configuration using flake and home-manager. -#+begin_src nix - { - description = "My Darwin Configuration"; - - inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - nix-darwin.url = "github:LnL7/nix-darwin"; - nix-darwin.inputs.nixpkgs.follows = "nixpkgs"; - home-manager.url = "github:nix-community/home-manager"; - home-manager.inputs.nixpkgs.follows = "nixpkgs"; - }; - - outputs = inputs@{ self, nix-darwin, nixpkgs, home-manager }: { - darwinConfigurations."macos" = nix-darwin.lib.darwinSystem { - specialArgs = { inherit inputs; }; - modules = [ - ./system/core.nix - home-manager.darwinModules.home-manager - { - home-manager.backupFileExtension = "bak"; - home-manager.useGlobalPkgs = false; - home-manager.useUserPackages = true; - home-manager.users.jjanzen = import ./home/core.nix; - } - ]; - }; - - darwinPackages = self.darwinConfigurations."macos".pkgs; - }; - } -#+end_src |