remove joe

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-12-19 16:00:40 -06:00
parent c61d52401d
commit 56cd97436a
6 changed files with 6 additions and 86 deletions

39
flake.lock generated
View file

@ -213,43 +213,6 @@
"type": "github" "type": "github"
} }
}, },
"joe_home-manager": {
"inputs": {
"nixpkgs": [
"joe_nixpkgs"
]
},
"locked": {
"lastModified": 1734366194,
"narHash": "sha256-vykpJ1xsdkv0j8WOVXrRFHUAdp9NXHpxdnn1F4pYgSw=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "80b0fdf483c5d1cb75aaad909bd390d48673857f",
"type": "github"
},
"original": {
"owner": "nix-community",
"ref": "release-24.11",
"repo": "home-manager",
"type": "github"
}
},
"joe_nixpkgs": {
"locked": {
"lastModified": 1734323986,
"narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "394571358ce82dff7411395829aa6a3aad45b907",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-24.11",
"repo": "nixpkgs",
"type": "github"
}
},
"lio_home-manager": { "lio_home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -1495,8 +1458,6 @@
"gpdPocket3_nixpkgs": "gpdPocket3_nixpkgs", "gpdPocket3_nixpkgs": "gpdPocket3_nixpkgs",
"h002_home-manager": "h002_home-manager", "h002_home-manager": "h002_home-manager",
"h002_nixpkgs": "h002_nixpkgs", "h002_nixpkgs": "h002_nixpkgs",
"joe_home-manager": "joe_home-manager",
"joe_nixpkgs": "joe_nixpkgs",
"lio_home-manager": "lio_home-manager", "lio_home-manager": "lio_home-manager",
"lio_nixpkgs": "lio_nixpkgs", "lio_nixpkgs": "lio_nixpkgs",
"nixpkgs_stable": "nixpkgs_stable", "nixpkgs_stable": "nixpkgs_stable",

View file

@ -15,12 +15,6 @@
inputs.nixpkgs.follows = "oren_nixpkgs"; inputs.nixpkgs.follows = "oren_nixpkgs";
}; };
joe_nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
joe_home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "joe_nixpkgs";
};
h002_nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; h002_nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
h002_home-manager = { h002_home-manager = {
url = "github:nix-community/home-manager/release-24.11"; url = "github:nix-community/home-manager/release-24.11";
@ -74,8 +68,6 @@
lio_home-manager, lio_home-manager,
oren_nixpkgs, oren_nixpkgs,
oren_home-manager, oren_home-manager,
joe_nixpkgs,
joe_home-manager,
gpdPocket3_nixpkgs, gpdPocket3_nixpkgs,
gpdPocket3_home-manager, gpdPocket3_home-manager,
h002_nixpkgs, h002_nixpkgs,
@ -116,18 +108,6 @@
allowUnfree = true; allowUnfree = true;
}; };
} }
{
name = "joe";
opts = {
system = "x86_64-linux";
};
settings = {
inherit user;
nixpkgs = joe_nixpkgs;
home-manager = joe_home-manager;
allowUnfree = true;
};
}
{ {
name = "gpdPocket3"; name = "gpdPocket3";
opts = { opts = {

View file

@ -53,12 +53,10 @@
## Local tooling ## Local tooling
- stormd
- get stormd and build locally, copy release build to /etc/stormd
- enable stormd mod TODO LEFT OFF HERE... get this working on lio
- atuin setup - atuin setup
- if atuin is on enable that mod in configuration.nix, make sure to `atuin login` get key from existing device - if atuin is on enable that mod in configuration.nix, make sure to `atuin login` get key from existing device
- TODO move key into secrets and mount it to atuin local share - TODO move key into secrets and mount it to atuin local share
- stormd onboard to network
## Darwin ## Darwin
@ -76,12 +74,6 @@ title Windows 11
efi /EFI/Microsoft/Boot/bootmgfw.efi efi /EFI/Microsoft/Boot/bootmgfw.efi
``` ```
###
###
- clone neovim setup...
# Settings references # Settings references
- Flake docs: <https://nixos.wiki/wiki/Flakes> - Flake docs: <https://nixos.wiki/wiki/Flakes>
@ -91,21 +83,8 @@ efi /EFI/Microsoft/Boot/bootmgfw.efi
# TODO # TODO
- Use top level split out home manager configurations instead of the one built into the system config... - Split config into further flakes, inputs should not affect other systems, like first run without stormd
- Make a flake for neovim and move out some system packages required for that into that flake, re-use for root and user rather than cloning each place? - work on secrets pre ragenix, stormd pre install for all the above bootstrapping steps would be ideal
- EDITOR env var set to neovim - reduce home manager, make per user modules support instead
- gif command from video
```sh
gif () {
if [[ -z $1 ]]; then
echo "No gif specified"
return 1
fi
ffmpeg -i $1 -filter_complex "fps=7,scale=iw:-1:flags=lanczos,split[s0][s1];[s0]palettegen=max_colors=32[p];[s1][p]paletteuse=dither=bayer" $1".gif"
}
```
- Ensure my neovim undohistory/auto saves don't save `.age` files as they can be sensitive. - Ensure my neovim undohistory/auto saves don't save `.age` files as they can be sensitive.
- make sure all my aliases are accounted for, still missing things like rust etc: <https://github.com/RingOfStorms/setup> - can I get tmux `tat` attach to remove new window if it restored from saved session?
- add in copy paste support with xclip or nix equivalent