idk
This commit is contained in:
parent
ee8ab43b89
commit
438f48ebf0
3 changed files with 10 additions and 10 deletions
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim";
|
ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim";
|
||||||
|
|
||||||
# impermanence.url = "github:nix-community/impermanence";
|
impermanence.url = "github:nix-community/impermanence";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
# inputs.impermanence.nixosModules.impermanence
|
inputs.impermanence.nixosModules.impermanence
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
|
|
||||||
inputs.ros_neovim.nixosModules.default
|
inputs.ros_neovim.nixosModules.default
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
|
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./hardware-mounts.nix
|
./hardware-mounts.nix
|
||||||
# ./impermanence.nix
|
./impermanence.nix
|
||||||
(
|
(
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,12 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
BOOT = "/dev/disk/by-uuid/9D7E-62B8";
|
BOOT = "/dev/disk/by-uuid/635D-F0DA";
|
||||||
PRIMARY = "/dev/disk/by-uuid/2a5b6a62-08b5-491b-917b-2e07f919d584";
|
PRIMARY = "/dev/disk/by-uuid/82cb11a7-097a-4e95-b9f0-47dad95de9df";
|
||||||
|
|
||||||
SWAP = "/dev/disk/by-uuid/f12c9e5e-a32d-417f-b9d3-8beb9a3ad802";
|
SWAP = "/dev/disk/by-uuid/29c89516-e6ed-4f91-adf7-646451a8e26f";
|
||||||
|
|
||||||
USB_KEY = "/dev/disk/by-uuid/63a7bd87-d644-43ea-83ba-547c03012fb6";
|
USB_KEY = "/dev/disk/by-uuid/e9dec4b1-e4e2-431c-9a85-73f7c3ff8b42";
|
||||||
|
|
||||||
primaryDeviceUnit = "${utils.escapeSystemdPath PRIMARY}.device";
|
primaryDeviceUnit = "${utils.escapeSystemdPath PRIMARY}.device";
|
||||||
in
|
in
|
||||||
|
|
@ -23,8 +23,8 @@ lib.mkMerge [
|
||||||
device = BOOT;
|
device = BOOT;
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [
|
options = [
|
||||||
"fmask=0022"
|
"fmask=0077"
|
||||||
"dmask=0022"
|
"dmask=0077"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,7 @@ NIX_SSHOPTS="-i /run/agenix/nix2nix" sudo nixos-rebuild switch --flake "git+http
|
||||||
## USB Key
|
## USB Key
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
DEVICE=sdc
|
DEVICE=sdb
|
||||||
parted /dev/$DEVICE -- mklabel gpt
|
parted /dev/$DEVICE -- mklabel gpt
|
||||||
parted /dev/$DEVICE -- mkpart KEY fat32 1MB 100%
|
parted /dev/$DEVICE -- mkpart KEY fat32 1MB 100%
|
||||||
DEVICE=$DEVICE"1"
|
DEVICE=$DEVICE"1"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue