Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nsimonfr/nic-os
💻 My nixOS / macOS configurations !
https://github.com/nsimonfr/nic-os
dotfiles nix nix-darwin nixos
Last synced: about 1 month ago
JSON representation
💻 My nixOS / macOS configurations !
- Host: GitHub
- URL: https://github.com/nsimonfr/nic-os
- Owner: nSimonFR
- Created: 2023-11-19T10:59:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-07T10:39:32.000Z (about 1 month ago)
- Last Synced: 2024-11-07T11:33:44.428Z (about 1 month ago)
- Topics: dotfiles, nix, nix-darwin, nixos
- Language: Nix
- Homepage:
- Size: 181 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nic-OS - My nix configs w/ flake
This repository replaces my configuration / dotfiles repository.
This allows centralized and reproductable management of:
- My linux computer management with NixOS
- Dotfiles and custom configurations for programs
- **TODO:** management of MacOS settings too (With [nix-darwin](https://github.com/LnL7/nix-darwin))All that, via a declarative and functional approach _("os-management-as-code")_ thanks to;
- [Nix package manager & NixOS](https://nixos.org/)
- [home-manager](https://github.com/nix-community/home-manager) _(Centralized management of programs for both Linux & MacOS)_> **Why nic-os ?**
>
> Profesionally, I'm known as "NicoS", and this manages my NixOS ! 😛## NixOS - Base install
### Start
```sh
sudo su
nix-shell -p nixFlakes git
```### Configuration
Apply disk configuration from [hardward-configuration.nix](./nixos/hardware-configuration.nix) - or switch to [custom installation](#nixos---custom-install).
### Install
```
nixos-install --flake github:nSimonFR/nic-os#BeAsT
```## NixOS - Custom install
Make sure you're [started correctly](#start) !
### Clone repo
```
git clone [email protected]:nSimonFR/nic-os.git
cd nic-os
```### Mount disk / hardware configuration
Mount your disks as you wish ([Guide](https://nixos.org/manual/nixos/stable/#sec-installation-manual-partitioning))
Then, re-generate and move `hardware-configuration.nix`:
```sh
nixos-generate-config --root /mnt
cp /mnt/etc/nixos/hardware-configuration.nix nixos/
```### Rename variables _(Optional)_
```
vim flake.nix
# locate and update ouputs => "let"
```### Install
```sh
nixos-install --flake .#YourConfigName
```## MacOS - Install
Pre-requesite: [clone](#clone-repo).
### Install `nix`
```sh
sh <(curl -L https://nixos.org/nix/install) --darwin-use-unencrypted-nix-store-volume --daemon
```### Home Manager install
```sh
nix-shell -p nixUnstable --command "nix build --experimental-features 'nix-command flakes' '.#homeConfigurations.nBook-Pro.activationPackage'" # Or replace host
./result/activate
```## Apply updates (local)
### NixOS / BeAsT
```sh
nixos-rebuild switch --flake .#BeAsT
```### Home Manager - NixOS
```sh
home-manager switch --flake .#BeAsT
```### Home Manager - MacOS
```sh
home-manager switch --flake .#nBook-Pro
```