mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-01-30 22:53:37 +00:00
~
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
parent
062c447374
commit
c38f040574
21 changed files with 5 additions and 4 deletions
4
Justfile
4
Justfile
|
@ -2,10 +2,10 @@ default:
|
|||
@just --list
|
||||
|
||||
rebuild host operation:
|
||||
sudo nixos-rebuild {{operation}} --flake ./nix#{{host}}
|
||||
sudo nixos-rebuild {{operation}} --flake ./nixos#{{host}}
|
||||
|
||||
home-rebuild operation:
|
||||
home-manager {{operation}} --flake ./nix
|
||||
home-manager {{operation}} --flake ./nixos
|
||||
|
||||
switch host:
|
||||
just rebuild {{host}} switch
|
||||
|
|
|
@ -14,10 +14,10 @@ theoretically:
|
|||
nix-shell -p git just
|
||||
git clone https://git.sr.ht/~roxwize/.dotfiles
|
||||
cd .dotfiles/
|
||||
nixos-install --flake './nix#[hostname]'
|
||||
nixos-install --flake './nixos#[hostname]'
|
||||
```
|
||||
|
||||
from my experience the process is more involved, but it ultimately boils down to those three commands above (the first command is only for bootstrapping). youll need to make a configuration for your host which involves creating default configurations with `nixos-generate-config`, copying it to your host's folder in `nix/hosts/[host]/`, editing it, and then adding it to `flake.nix`. after that you should clone the repo inside of `/home/rae/` on your filesystem
|
||||
from my experience the process is more involved, but it ultimately boils down to those three commands above (the first command is only for bootstrapping). youll need to make a configuration for your host which involves creating default configurations with `nixos-generate-config`, copying it to your host's folder in `nixos/hosts/[host]/`, editing it, and then adding it to `flake.nix`. after that you should clone the repo inside of `/home/rae/` on your filesystem
|
||||
|
||||
# usage
|
||||
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
"workbench.colorTheme" = "Catppuccin Frappé";
|
||||
"workbench.iconTheme" = "catppuccin-frappe";
|
||||
} // builtins.listToAttrs [
|
||||
(df "css" "esbenp.prettier-vscode")
|
||||
(df "html" "esbenp.prettier-vscode")
|
||||
(df "typescript" "esbenp.prettier-vscode")
|
||||
(df "javascript" "esbenp.prettier-vscode")
|
Loading…
Reference in a new issue