From 5f0b32efe1e2a894be2261a2b9911f7886bc9d63 Mon Sep 17 00:00:00 2001 From: schererleander Date: Thu, 8 May 2025 14:23:04 +0200 Subject: add experimental features --- hosts/darwin/configuration.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hosts/darwin/configuration.nix b/hosts/darwin/configuration.nix index e3e7372..8edccab 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 = []; @@ -21,7 +26,5 @@ ]; }; - nixpkgs.hostPlatform = "aarch64-darwin"; - nixpkgs.config.allowUnfree = true; system.stateVersion = 5; } -- cgit v1.3.1 From 8ac872e1a963c73609ecfc38261b9490813cb9b2 Mon Sep 17 00:00:00 2001 From: schererleander Date: Thu, 8 May 2025 14:23:18 +0200 Subject: add programs --- hosts/nixos/home.nix | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v1.3.1