Skip to content

Commit

Permalink
Remove NixOS configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
lucperkins committed Nov 18, 2024
1 parent ce1b9bc commit 1110949
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ It encapsulates a range of Nix goodies that I use to declutter and bring order t

- My [nix-darwin] and [Home Manager][hm] configuration
- Shell aliases and helper scripts
- [NixOS](#nixos-configuration)

What I run to apply my [nix-darwin] configuration (which in turn applies my [Home Manager][hm] config):

Expand All @@ -16,15 +15,6 @@ nix develop --command reload
That's right: with Nix installed and [flakes enabled][flakes], this is all that I need to run to stand up a new machine according to my exact specifications, including configuration for [Vim](./nix-darwin/home-manager/neovim.nix), [tmux](./nix-darwin/home-manager/tmux.nix), [zsh](./nix-darwin/home-manager/zsh.nix), [Visual Studio Code](./nix-darwin/home-manager/vscode.nix), [Git](./nix-darwin/home-manager/git.nix), and more.
This has enabled me to eliminate [Homebrew] from my machine.

## NixOS configuration

My Nome flake also exports a [NixOS](./nixos) configuration that I use for experimentation.
To apply that config on any NixOS machine:

```shell
nixos-rebuild switch --flake "github:the-nix-way"
```

## Scope

I should make it clear that this project is a personal project and not necessarily intended as a blueprint or a reproducible template.
Expand Down
9 changes: 0 additions & 9 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,6 @@
};
};

nixosConfigurations = rec {
default = simple;

simple = inputs.nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [ ./nixos/configuration.nix ./nixos/hardware-configuration.nix ];
};
};

templates = import
./templates;
};
Expand Down

0 comments on commit 1110949

Please sign in to comment.