mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-18 22:55:52 +05:30
14 lines
307 B
Bash
14 lines
307 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Script to synchronize system state
|
||
|
# with configuration files for nixos system
|
||
|
# and home-manager
|
||
|
|
||
|
# Rebuild system
|
||
|
sudo nixos-rebuild switch --flake ~/.dotfiles#system;
|
||
|
|
||
|
# Install and build home-manager configuration
|
||
|
home-manager switch --flake ~/.dotfiles#user;
|
||
|
|
||
|
~/.dotfiles/sync-posthook.sh
|