From 778775ceb6a400c7753a1da4106dda13379683a7 Mon Sep 17 00:00:00 2001 From: liv Date: Tue, 29 Oct 2024 13:46:55 +0100 Subject: [PATCH] treewide: remove darwin --- darwin/koishi/configuration.nix | 23 ----------------------- flake.nix | 22 ++-------------------- 2 files changed, 2 insertions(+), 43 deletions(-) delete mode 100644 darwin/koishi/configuration.nix diff --git a/darwin/koishi/configuration.nix b/darwin/koishi/configuration.nix deleted file mode 100644 index 622ff8a..0000000 --- a/darwin/koishi/configuration.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ pkgs, ... }: { - nixpkgs = { config = { allowUnfree = true; }; }; - - services.nix-daemon.enable = true; - nix.settings.experimental-features = "nix-command flakes"; - - users.users.lu = { - name = "lu"; - home = "/Users/lu"; - shell = pkgs.fish; - }; - - programs.fish = { - enable = true; - vendor = { - completions.enable = true; - config.enable = true; - functions.enable = true; - }; - }; - - system.stateVersion = 5; -} diff --git a/flake.nix b/flake.nix index c087287..666dee6 100644 --- a/flake.nix +++ b/flake.nix @@ -19,19 +19,15 @@ stylix.url = "github:danth/stylix"; stylix.inputs.nixpkgs.follows = "nixpkgs"; - # nix-darwin - darwin.url = "github:lnl7/nix-darwin"; - darwin.inputs.nixpkgs.follows = "nixpkgs"; - # nix-hardware nixos-hardware.url = "github:NixOS/nixos-hardware/master"; }; - outputs = { self, nixpkgs, home-manager, nixos-hardware, darwin, ... }@inputs: + outputs = { self, nixpkgs, home-manager, nixos-hardware, ... }@inputs: let inherit (self) outputs; lib = nixpkgs.lib; - systems = [ "x86_64-linux" "aarch64-darwin" ]; + systems = [ "x86_64-linux" ]; forEachSystem = f: lib.genAttrs systems (system: f pkgsFor.${system}); pkgsFor = lib.genAttrs systems (system: import nixpkgs { @@ -74,19 +70,5 @@ ]; }; }; - - darwinConfigurations = { - koishi = darwin.lib.darwinSystem { - system = "aarch64-darwin"; - modules = [ - ./darwin/koishi/configuration.nix - home-manager.darwinModules.home-manager - { - home-manager.extraSpecialArgs = { inherit inputs outputs; }; - home-manager.users.lu = import ./home/koishi.nix; - } - ]; - }; - }; }; }