mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Testing update system from git repo script
This commit is contained in:
parent
df76ef046a
commit
5b80e2c497
|
@ -27,5 +27,8 @@ chown 0:0 flake.lock;
|
||||||
chown 0:0 flake.nix
|
chown 0:0 flake.nix
|
||||||
chown 0:0 profiles/*/configuration.nix;
|
chown 0:0 profiles/*/configuration.nix;
|
||||||
chown 0:0 harden.sh;
|
chown 0:0 harden.sh;
|
||||||
|
chown 0:0 soften.sh;
|
||||||
|
chown 0:0 install.sh;
|
||||||
|
chown 0:0 update.sh;
|
||||||
chown 1000:users **/README.org;
|
chown 1000:users **/README.org;
|
||||||
popd &> /dev/null;
|
popd &> /dev/null;
|
||||||
|
|
|
@ -28,11 +28,12 @@ if [ -z "$EDITOR" ]; then
|
||||||
fi
|
fi
|
||||||
$EDITOR ~/.dotfiles/flake.nix;
|
$EDITOR ~/.dotfiles/flake.nix;
|
||||||
|
|
||||||
|
# Permissions for files that should be owned by root
|
||||||
|
sudo ~/.dotfiles/harden.sh ~/.dotfiles;
|
||||||
|
|
||||||
# Rebuild system
|
# Rebuild system
|
||||||
sudo nixos-rebuild switch --flake ~/.dotfiles#system;
|
sudo nixos-rebuild switch --flake ~/.dotfiles#system;
|
||||||
|
|
||||||
# Install and build home-manager configuration
|
# Install and build home-manager configuration
|
||||||
nix run home-manager/master --extra-experimental-features nix-command --extra-experimental-features flakes -- switch --flake ~/.dotfiles#user;
|
nix run home-manager/master --extra-experimental-features nix-command --extra-experimental-features flakes -- switch --flake ~/.dotfiles#user;
|
||||||
|
|
||||||
# Permissions for files that should be owned by root
|
|
||||||
sudo ~/.dotfiles/harden.sh ~/.dotfiles;
|
|
||||||
|
|
27
soften.sh
Executable file
27
soften.sh
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# This will soften the security of these dotfiles, allowing
|
||||||
|
# the default unpriveleged user with UID/GID of 1000 to edit ALL FILES
|
||||||
|
# in the dotfiles directory
|
||||||
|
|
||||||
|
# This mainly is just here to be used by some scripts
|
||||||
|
|
||||||
|
# Run this inside of ~/.dotfiles (or whatever directory you installed
|
||||||
|
# the dotfiles to)
|
||||||
|
|
||||||
|
# Run this as root!
|
||||||
|
|
||||||
|
# BTW, this assumes your user account has a UID/GID of 1000
|
||||||
|
|
||||||
|
# After running this, YOUR UNPRIVELEGED USER CAN MAKE EDITS TO
|
||||||
|
# IMPORTANT SYSTEM FILES WHICH MAY COMPROMISE THE SYSTEM AFTER
|
||||||
|
# RUNNING nixos-rebuild switch!
|
||||||
|
|
||||||
|
if [ "$#" = 1 ]; then
|
||||||
|
dotfilesDir=$1;
|
||||||
|
else
|
||||||
|
dotfilesDir=$(pwd);
|
||||||
|
fi
|
||||||
|
pushd $dotfilesDir &> /dev/null;
|
||||||
|
chown -R 1000:users .;
|
||||||
|
popd &> /dev/null;
|
23
update.sh
Executable file
23
update.sh
Executable file
|
@ -0,0 +1,23 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Automated script to update my non-primary systems
|
||||||
|
# to be in sync with upstream git repo while
|
||||||
|
# preserving local edits to dotfiles via git stash
|
||||||
|
|
||||||
|
# Relax permissions temporarily so git can work
|
||||||
|
sudo ~/.dotfiles/soften.sh ~/.dotfiles;
|
||||||
|
|
||||||
|
# Stash local edits, pull changes, and re-apply local edits
|
||||||
|
git stash
|
||||||
|
git pull
|
||||||
|
git stash apply
|
||||||
|
|
||||||
|
# Permissions for files that should be owned by root
|
||||||
|
sudo ~/.dotfiles/harden.sh ~/.dotfiles;
|
||||||
|
|
||||||
|
# Rebuild system
|
||||||
|
sudo nixos-rebuild switch --flake ~/.dotfiles#system;
|
||||||
|
|
||||||
|
# Install and build home-manager configuration
|
||||||
|
home-manager --extra-experimental-features nix-command --extra-experimental-features flakes -- switch --flake ~/.dotfiles#user;
|
||||||
|
|
Loading…
Reference in a new issue