diff options
Diffstat (limited to 'hosts')
| -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 |
