diff options
| author | schererleander <leander@schererleander.de> | 2025-05-08 14:25:58 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-05-08 14:25:58 +0200 |
| commit | 9425055b13d4fa89280b899c2bde22fadc8561b3 (patch) | |
| tree | 129b57dbb9978fc250ff9988d7c7f91900a1e5ed | |
| parent | e0bea314193d32fb3a2fd79dffccbc5468baa91e (diff) | |
| parent | 8ac872e1a963c73609ecfc38261b9490813cb9b2 (diff) | |
Merge branch 'main' of github.com:schererleander/nix
| -rw-r--r-- | hosts/darwin/configuration.nix | 9 | ||||
| -rw-r--r-- | hosts/nixos/home.nix | 4 |
2 files changed, 10 insertions, 3 deletions
diff --git a/hosts/darwin/configuration.nix b/hosts/darwin/configuration.nix index 2dad61e..86dee3c 100644 --- a/hosts/darwin/configuration.nix +++ b/hosts/darwin/configuration.nix @@ -2,13 +2,18 @@ { services.nix-daemon.enable = true; - programs.zsh.enable = true; + nix.settings.experimental-features = "nix-command flakes"; + nixpkgs.hostPlatform = "aarch64-darwin"; + nixpkgs.config.allowUnfree = true; + users.users.schererleander = { home = "/Users/schererleander"; shell = pkgs.zsh; }; + programs.zsh.enable = true; + homebrew = { enable = true; taps = []; @@ -22,7 +27,5 @@ ]; }; - nixpkgs.hostPlatform = "aarch64-darwin"; - nixpkgs.config.allowUnfree = true; system.stateVersion = 5; } diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index 8df51bd..a336b4f 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -14,6 +14,10 @@ home.packages = with pkgs; [ firefox obsidian + jetbrains.idea-community-bin + localsend + + #cli fzf htop imv |
