Compare commits
No commits in common. "snowfall" and "master" have entirely different histories.
1
.gitignore
vendored
Executable file → Normal file
1
.gitignore
vendored
Executable file → Normal file
@ -1,4 +1,3 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
_scratch
|
_scratch
|
||||||
result
|
result
|
||||||
._*
|
|
||||||
|
15
.sops.yaml
15
.sops.yaml
@ -1,15 +0,0 @@
|
|||||||
keys:
|
|
||||||
# Admin - Age Native
|
|
||||||
- &admin_reichard age1sac93wpnjcv62s7583jv6a4yspndh6k0r25g3qx3k7gq748uvafst6nz4w
|
|
||||||
# lin-va-mbp-personal@evanreichard - SSH Derived
|
|
||||||
- &user_lin-va-mbp-personal age17ayje4uv2mhwehhp9jr3u9l0ds07396kt7ef40sufx89vm7cgfjq6d5d4y
|
|
||||||
creation_rules:
|
|
||||||
- path_regex: secrets/[^/]+\.(yaml|json|env|ini)$
|
|
||||||
key_groups:
|
|
||||||
- age:
|
|
||||||
- *admin_reichard
|
|
||||||
- path_regex: secrets/lin-va-mbp-personal/evanreichard/[^/]+\.(yaml|json|env|ini)$
|
|
||||||
key_groups:
|
|
||||||
- age:
|
|
||||||
- *admin_reichard
|
|
||||||
- *user_lin-va-mbp-personal
|
|
16
README.md
Executable file → Normal file
16
README.md
Executable file → Normal file
@ -2,22 +2,16 @@
|
|||||||
|
|
||||||
This repository contains the configuration for multiple machines, as well as my home / IDE config (home-manager).
|
This repository contains the configuration for multiple machines, as well as my home / IDE config (home-manager).
|
||||||
|
|
||||||
### NixOS
|
## Home Manager
|
||||||
|
|
||||||
```bash
|
Utilizing [Home Manager](https://nix-community.github.io/home-manager/). Check out the [README.md](./home-manager/README.md).
|
||||||
sudo nixos-rebuild switch --flake .#lin-va-mbp-personal
|
|
||||||
```
|
## NixOS
|
||||||
|
|
||||||
### NixOS Generators
|
### NixOS Generators
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
nix build .#vmwareConfigurations.rke2-node
|
nix build .#packages.x86_64-linux.rke2-image
|
||||||
```
|
|
||||||
|
|
||||||
### Home Manager
|
|
||||||
|
|
||||||
```bash
|
|
||||||
home-manager switch --flake .#evanreichard@MBP-Personal
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### NixOS Hosts
|
### NixOS Hosts
|
||||||
|
13
bootstrap.sh
13
bootstrap.sh
@ -1,9 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
export NIX_CONFIG="experimental-features = nix-command flakes"
|
|
||||||
|
|
||||||
function cmd_image() {
|
function cmd_image() {
|
||||||
local usage="Usage: $0 image --name <image-name> [--remote]"
|
local usage="Usage: $0 image --name <image-name>"
|
||||||
local name=""
|
local name=""
|
||||||
local remote=false
|
local remote=false
|
||||||
|
|
||||||
@ -31,13 +29,14 @@ function cmd_image() {
|
|||||||
|
|
||||||
# Validate Config Exists
|
# Validate Config Exists
|
||||||
if ! nix eval --json --impure \
|
if ! nix eval --json --impure \
|
||||||
".#qcowConfigurations" \
|
--experimental-features "nix-command flakes" \
|
||||||
|
".#packages.x86_64-linux" \
|
||||||
--apply "s: builtins.hasAttr \"$name\" s" 2>/dev/null | grep -q "true"; then
|
--apply "s: builtins.hasAttr \"$name\" s" 2>/dev/null | grep -q "true"; then
|
||||||
echo "Error: NixOS Generator Config '$name' not found"
|
echo "Error: NixOS Generator Config '$name' not found"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
build_args=(".#qcowConfigurations.$name")
|
build_args=(".#packages.x86_64-linux.$name")
|
||||||
if [ "$remote" = true ]; then
|
if [ "$remote" = true ]; then
|
||||||
build_args+=("-j0")
|
build_args+=("-j0")
|
||||||
fi
|
fi
|
||||||
@ -74,16 +73,16 @@ function cmd_install() {
|
|||||||
|
|
||||||
# Validate Config Exists
|
# Validate Config Exists
|
||||||
if ! nix eval --json --impure \
|
if ! nix eval --json --impure \
|
||||||
|
--experimental-features "nix-command flakes" \
|
||||||
".#nixosConfigurations" \
|
".#nixosConfigurations" \
|
||||||
--apply "s: builtins.hasAttr \"$name\" s" 2>/dev/null | grep -q "true"; then
|
--apply "s: builtins.hasAttr \"$name\" s" 2>/dev/null | grep -q "true"; then
|
||||||
echo "Error: NixOS configuration '$name' not found"
|
echo "Error: NixOS configuration '$name' not found"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#$ TODO
|
|
||||||
#
|
|
||||||
# Validate mainDiskID Exists
|
# Validate mainDiskID Exists
|
||||||
if ! disk_id=$(nix eval --raw --impure \
|
if ! disk_id=$(nix eval --raw --impure \
|
||||||
|
--experimental-features "nix-command flakes" \
|
||||||
".#nixosConfigurations.$name.config.mainDiskID" 2>/dev/null); then
|
".#nixosConfigurations.$name.config.mainDiskID" 2>/dev/null); then
|
||||||
echo "Error: mainDiskID not defined for configuration '$name'"
|
echo "Error: mainDiskID not defined for configuration '$name'"
|
||||||
exit 1
|
exit 1
|
||||||
|
254
flake.lock
generated
Executable file → Normal file
254
flake.lock
generated
Executable file → Normal file
@ -1,38 +1,15 @@
|
|||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"apple-silicon": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-compat": "flake-compat",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
],
|
|
||||||
"rust-overlay": "rust-overlay"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1738646032,
|
|
||||||
"narHash": "sha256-57BdBE9anNpIpf48EiTVLGxg4mOQ04XjHCEP0gLTsFA=",
|
|
||||||
"owner": "tpwrules",
|
|
||||||
"repo": "nixos-apple-silicon",
|
|
||||||
"rev": "e77031211944723a38bebc043e48847c36e43668",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "tpwrules",
|
|
||||||
"ref": "releasep2-2024-12-25",
|
|
||||||
"repo": "nixos-apple-silicon",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"disko": {
|
"disko": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1743598667,
|
"lastModified": 1739841949,
|
||||||
"narHash": "sha256-ViE7NoFWytYO2uJONTAX35eGsvTYXNHjWALeHAg8OQY=",
|
"narHash": "sha256-lSOXdgW/1zi/SSu7xp71v+55D5Egz8ACv0STkj7fhbs=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "disko",
|
"repo": "disko",
|
||||||
"rev": "329d3d7e8bc63dd30c39e14e6076db590a6eabe6",
|
"rev": "15dbf8cebd8e2655a883b74547108e089f051bf0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -41,133 +18,6 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"firefox-addons": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-utils": "flake-utils",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"dir": "pkgs/firefox-addons",
|
|
||||||
"lastModified": 1743861198,
|
|
||||||
"narHash": "sha256-PzbPHoSI5U1juWd01Spf3ST7ylR9mQ84v5p7NksBplY=",
|
|
||||||
"owner": "rycee",
|
|
||||||
"repo": "nur-expressions",
|
|
||||||
"rev": "7408ed5bbc9009741094f4dd4cc1abec79e79e7e",
|
|
||||||
"type": "gitlab"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"dir": "pkgs/firefox-addons",
|
|
||||||
"owner": "rycee",
|
|
||||||
"repo": "nur-expressions",
|
|
||||||
"type": "gitlab"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-compat": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1688025799,
|
|
||||||
"narHash": "sha256-ktpB4dRtnksm9F5WawoIkEneh1nrEvuxb5lJFt1iOyw=",
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"rev": "8bf105319d44f6b9f0d764efa4fdef9f1cc9ba1c",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-compat_2": {
|
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1650374568,
|
|
||||||
"narHash": "sha256-Z+s0J8/r907g149rllvwhb4pKi8Wam5ij0st8PwAh+E=",
|
|
||||||
"owner": "edolstra",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"rev": "b4a34015c698c7793d592d66adbab377907a2be8",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "edolstra",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-utils": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1629284811,
|
|
||||||
"narHash": "sha256-JHgasjPR0/J1J3DRm4KxM4zTyAj4IOJY8vIl75v/kPI=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"rev": "c5d161cc0af116a2e17f54316f0bf43f0819785c",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-utils-plus": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-utils": "flake-utils_2"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1715533576,
|
|
||||||
"narHash": "sha256-fT4ppWeCJ0uR300EH3i7kmgRZnAVxrH+XtK09jQWihk=",
|
|
||||||
"owner": "gytis-ivaskevicius",
|
|
||||||
"repo": "flake-utils-plus",
|
|
||||||
"rev": "3542fe9126dc492e53ddd252bb0260fe035f2c0f",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "gytis-ivaskevicius",
|
|
||||||
"repo": "flake-utils-plus",
|
|
||||||
"rev": "3542fe9126dc492e53ddd252bb0260fe035f2c0f",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-utils_2": {
|
|
||||||
"inputs": {
|
|
||||||
"systems": "systems"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1694529238,
|
|
||||||
"narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"rev": "ff7b65b44d01cf9ba6a71320833626af21126384",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"home-manager": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1743808813,
|
|
||||||
"narHash": "sha256-2lDQBOmlz9ggPxcS7/GvcVdzXMIiT+PpMao6FbLJSr0=",
|
|
||||||
"owner": "nix-community",
|
|
||||||
"repo": "home-manager",
|
|
||||||
"rev": "a9f8b3db211b4609ddd83683f9db89796c7f6ac6",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-community",
|
|
||||||
"ref": "release-24.11",
|
|
||||||
"repo": "home-manager",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixlib": {
|
"nixlib": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1736643958,
|
"lastModified": 1736643958,
|
||||||
@ -191,11 +41,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1742568034,
|
"lastModified": 1737057290,
|
||||||
"narHash": "sha256-QaMEhcnscfF2MqB7flZr+sLJMMYZPnvqO4NYf9B4G38=",
|
"narHash": "sha256-3Pe0yKlCc7EOeq1X/aJVDH0CtNL+tIBm49vpepwL1MQ=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "nixos-generators",
|
"repo": "nixos-generators",
|
||||||
"rev": "42ee229088490e3777ed7d1162cb9e9d8c3dbb11",
|
"rev": "d002ce9b6e7eb467cd1c6bb9aef9c35d191b5453",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -206,11 +56,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1743259260,
|
"lastModified": 1738136902,
|
||||||
"narHash": "sha256-ArWLUgRm1tKHiqlhnymyVqi5kLNCK5ghvm06mfCl4QY=",
|
"narHash": "sha256-pUvLijVGARw4u793APze3j6mU1Zwdtz7hGkGGkD87qw=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "eb0e0f21f15c559d2ac7633dc81d079d1caf5f5f",
|
"rev": "9a5db3142ce450045840cc8d832b13b8a2018e0c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -222,11 +72,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1743813633,
|
"lastModified": 1739758141,
|
||||||
"narHash": "sha256-BgkBz4NpV6Kg8XF7cmHDHRVGZYnKbvG0Y4p+jElwxaM=",
|
"narHash": "sha256-uq6A2L7o1/tR6VfmYhZWoVAwb3gTy7j4Jx30MIrH0rE=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "7819a0d29d1dd2bc331bec4b327f0776359b1fa6",
|
"rev": "c618e28f70257593de75a7044438efc1c1fc0791",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -238,87 +88,9 @@
|
|||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"apple-silicon": "apple-silicon",
|
|
||||||
"disko": "disko",
|
"disko": "disko",
|
||||||
"firefox-addons": "firefox-addons",
|
|
||||||
"home-manager": "home-manager",
|
|
||||||
"nixos-generators": "nixos-generators",
|
"nixos-generators": "nixos-generators",
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2"
|
||||||
"snowfall-lib": "snowfall-lib",
|
|
||||||
"sops-nix": "sops-nix"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rust-overlay": {
|
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1686795910,
|
|
||||||
"narHash": "sha256-jDa40qRZ0GRQtP9EMZdf+uCbvzuLnJglTUI2JoHfWDc=",
|
|
||||||
"owner": "oxalica",
|
|
||||||
"repo": "rust-overlay",
|
|
||||||
"rev": "5c2b97c0a9bc5217fc3dfb1555aae0fb756d99f9",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "oxalica",
|
|
||||||
"repo": "rust-overlay",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"snowfall-lib": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-compat": "flake-compat_2",
|
|
||||||
"flake-utils-plus": "flake-utils-plus",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1736130495,
|
|
||||||
"narHash": "sha256-4i9nAJEZFv7vZMmrE0YG55I3Ggrtfo5/T07JEpEZ/RM=",
|
|
||||||
"owner": "snowfallorg",
|
|
||||||
"repo": "lib",
|
|
||||||
"rev": "02d941739f98a09e81f3d2d9b3ab08918958beac",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "snowfallorg",
|
|
||||||
"repo": "lib",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sops-nix": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1743910657,
|
|
||||||
"narHash": "sha256-zr2jmWeWyhCD8WmO2aWov2g0WPPuZfcJDKzMJZYGq3Y=",
|
|
||||||
"owner": "Mic92",
|
|
||||||
"repo": "sops-nix",
|
|
||||||
"rev": "523f58a4faff6c67f5f685bed33a7721e984c304",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "Mic92",
|
|
||||||
"repo": "sops-nix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"systems": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1681028828,
|
|
||||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"type": "github"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
118
flake.nix
Executable file → Normal file
118
flake.nix
Executable file → Normal file
@ -4,61 +4,93 @@
|
|||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||||
disko.url = "github:nix-community/disko";
|
disko.url = "github:nix-community/disko";
|
||||||
snowfall-lib = {
|
|
||||||
url = "github:snowfallorg/lib";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
home-manager = {
|
|
||||||
url = "github:nix-community/home-manager/release-24.11";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
apple-silicon = {
|
|
||||||
url = "github:tpwrules/nixos-apple-silicon/releasep2-2024-12-25";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
nixos-generators = {
|
nixos-generators = {
|
||||||
url = "github:nix-community/nixos-generators";
|
url = "github:nix-community/nixos-generators";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
firefox-addons = {
|
|
||||||
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
sops-nix = {
|
|
||||||
url = "github:Mic92/sops-nix";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs:
|
outputs = { self, nixpkgs, disko, nixos-generators }:
|
||||||
inputs.snowfall-lib.mkFlake {
|
let
|
||||||
inherit inputs;
|
mkSystem = { systemConfig ? { }, moduleConfig }: nixpkgs.lib.nixosSystem {
|
||||||
src = ./.;
|
system = "x86_64-linux";
|
||||||
|
modules = [
|
||||||
|
disko.nixosModules.disko
|
||||||
|
./lib/disk-config.nix
|
||||||
|
./lib/common-system.nix
|
||||||
|
systemConfig
|
||||||
|
({ ... }: moduleConfig)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
# NixOS Generators
|
||||||
|
packages.x86_64-linux = {
|
||||||
|
# RKE2
|
||||||
|
rke2-image = nixos-generators.nixosGenerate {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
format = "vmware";
|
||||||
|
modules = [
|
||||||
|
./hosts/rke2-image.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
snowfall = {
|
usb-image = nixos-generators.nixosGenerate {
|
||||||
namespace = "reichard";
|
system = "x86_64-linux";
|
||||||
meta = {
|
format = "raw-efi";
|
||||||
title = "Reichard";
|
modules = [
|
||||||
name = "reichard";
|
./hosts/usb-image.nix
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
channels-config = {
|
# NixOS Configurations
|
||||||
allowUnfree = true;
|
nixosConfigurations = {
|
||||||
permittedInsecurePackages = [
|
# Office Server (LLaMA / ADS-B)
|
||||||
"intel-ocl-5.0-63503"
|
lin-va-office = mkSystem {
|
||||||
];
|
systemConfig = ./hosts/office-server.nix;
|
||||||
};
|
moduleConfig = {
|
||||||
|
hostName = "lin-va-office";
|
||||||
|
mainDiskID = "/dev/disk/by-id/ata-MTFDDAK512MBF-1AN1ZABHA_161212233628";
|
||||||
|
network = {
|
||||||
|
interface = "enp5s0";
|
||||||
|
address = "10.0.50.120";
|
||||||
|
defaultGateway = "10.0.50.254";
|
||||||
|
nameservers = [ "10.0.50.254" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
homes.modules = with inputs; [
|
# Utility Room Desktop
|
||||||
sops-nix.homeManagerModules.sops
|
lin-va-utility = mkSystem {
|
||||||
];
|
systemConfig = ./hosts/utility-desktop.nix;
|
||||||
|
moduleConfig = {
|
||||||
|
hostName = "lin-va-utility";
|
||||||
|
mainDiskID = "/dev/disk/by-id/nvme-eui.0026b768429d3eb5";
|
||||||
|
network = {
|
||||||
|
interface = "eno1";
|
||||||
|
address = "10.0.20.50";
|
||||||
|
defaultGateway = "10.0.20.254";
|
||||||
|
nameservers = [ "10.0.20.254" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
systems.modules = {
|
# Nix Builder
|
||||||
nixos = with inputs; [
|
lin-va-nix-builder = mkSystem {
|
||||||
disko.nixosModules.disko
|
systemConfig = ./hosts/builder.nix;
|
||||||
sops-nix.nixosModules.sops
|
moduleConfig = {
|
||||||
];
|
hostName = "lin-va-nix-builder";
|
||||||
|
mainDiskID = "/dev/xvda";
|
||||||
|
enableXenGuest = true;
|
||||||
|
network = {
|
||||||
|
interface = "enX0";
|
||||||
|
address = "10.0.50.130";
|
||||||
|
defaultGateway = "10.0.50.254";
|
||||||
|
nameservers = [ "10.0.50.254" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
0
homes/aarch64-darwin/evanreichard@mac-va-mbp-personal/README.md → home-manager/README.md
Executable file → Normal file
0
homes/aarch64-darwin/evanreichard@mac-va-mbp-personal/README.md → home-manager/README.md
Executable file → Normal file
18
home-manager/bash/default.nix
Normal file
18
home-manager/bash/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
programs.bash = {
|
||||||
|
enable = true;
|
||||||
|
shellAliases = {
|
||||||
|
grep = "grep --color";
|
||||||
|
ssh = "TERM=xterm-256color ssh";
|
||||||
|
flush_dns = "sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder";
|
||||||
|
};
|
||||||
|
profileExtra = ''
|
||||||
|
SHELL="$BASH"
|
||||||
|
PATH=~/.bin:$PATH
|
||||||
|
eval "$(thefuck --alias)"
|
||||||
|
set -o vi
|
||||||
|
bind "set show-mode-in-prompt on"
|
||||||
|
fastfetch
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
0
modules/home/programs/terminal/btop/config/btop.conf → home-manager/btop/config/btop.conf
Executable file → Normal file
0
modules/home/programs/terminal/btop/config/btop.conf → home-manager/btop/config/btop.conf
Executable file → Normal file
0
modules/home/programs/terminal/btop/config/catppuccin_mocha.theme → home-manager/btop/config/catppuccin_mocha.theme
Executable file → Normal file
0
modules/home/programs/terminal/btop/config/catppuccin_mocha.theme → home-manager/btop/config/catppuccin_mocha.theme
Executable file → Normal file
10
home-manager/btop/default.nix
Normal file
10
home-manager/btop/default.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
programs.btop = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.file.".config/btop/btop.conf".text =
|
||||||
|
builtins.readFile ./config/btop.conf;
|
||||||
|
home.file.".config/btop/themes/catppuccin_mocha.theme".text =
|
||||||
|
builtins.readFile ./config/catppuccin_mocha.theme;
|
||||||
|
}
|
6
home-manager/direnv/default.nix
Normal file
6
home-manager/direnv/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
programs.direnv = {
|
||||||
|
enable = true;
|
||||||
|
nix-direnv.enable = true;
|
||||||
|
};
|
||||||
|
}
|
0
modules/home/programs/graphical/ghostty/config/fastfetch.jsonc → home-manager/fastfetch/config/config.jsonc
Executable file → Normal file
0
modules/home/programs/graphical/ghostty/config/fastfetch.jsonc → home-manager/fastfetch/config/config.jsonc
Executable file → Normal file
7
home-manager/fastfetch/default.nix
Normal file
7
home-manager/fastfetch/default.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
xdg.configFile = {
|
||||||
|
"fastfetch/config.jsonc" = {
|
||||||
|
source = ./config/config.jsonc;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
26
home-manager/ghostty/config/ghostty.conf
Normal file
26
home-manager/ghostty/config/ghostty.conf
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
command = bash --login
|
||||||
|
macos-titlebar-style = tabs
|
||||||
|
auto-update = off
|
||||||
|
font-family = "MesloLGM Nerd Font Mono"
|
||||||
|
|
||||||
|
# Melange Dark - Adapted From: https://github.com/savq/melange-nvim/blob/master/term/kitty/melange_dark.conf
|
||||||
|
palette = 0=#34302C
|
||||||
|
palette = 1=#BD8183
|
||||||
|
palette = 2=#78997A
|
||||||
|
palette = 3=#E49B5D
|
||||||
|
palette = 4=#7F91B2
|
||||||
|
palette = 5=#B380B0
|
||||||
|
palette = 6=#7B9695
|
||||||
|
palette = 7=#C1A78E
|
||||||
|
palette = 8=#867462
|
||||||
|
palette = 9=#D47766
|
||||||
|
palette = 10=#85B695
|
||||||
|
palette = 11=#EBC06D
|
||||||
|
palette = 12=#A3A9CE
|
||||||
|
palette = 13=#CF9BC2
|
||||||
|
palette = 14=#89B3B6
|
||||||
|
palette = 15=#ECE1D7
|
||||||
|
background = 292522
|
||||||
|
foreground = ECE1D7
|
||||||
|
selection-background = 403A36
|
||||||
|
selection-foreground = ECE1D7
|
7
home-manager/ghostty/default.nix
Normal file
7
home-manager/ghostty/default.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
xdg.configFile = {
|
||||||
|
"ghostty/config" = {
|
||||||
|
source = ./config/ghostty.conf;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
0
modules/home/programs/terminal/git/config/.gitignore → home-manager/git/config/.gitignore
vendored
Executable file → Normal file
0
modules/home/programs/terminal/git/config/.gitignore → home-manager/git/config/.gitignore
vendored
Executable file → Normal file
0
modules/home/programs/terminal/git/config/personal → home-manager/git/config/personal
Executable file → Normal file
0
modules/home/programs/terminal/git/config/personal → home-manager/git/config/personal
Executable file → Normal file
0
modules/home/programs/terminal/git/config/work → home-manager/git/config/work
Executable file → Normal file
0
modules/home/programs/terminal/git/config/work → home-manager/git/config/work
Executable file → Normal file
72
home-manager/git/default.nix
Normal file
72
home-manager/git/default.nix
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
{
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userName = "Evan Reichard";
|
||||||
|
aliases = {
|
||||||
|
lg = "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all -n 15";
|
||||||
|
};
|
||||||
|
includes = [
|
||||||
|
{
|
||||||
|
path = "~/.config/git/work";
|
||||||
|
condition = "gitdir:~/Development/git/work/";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
path = "~/.config/git/personal";
|
||||||
|
condition = "gitdir:~/Development/git/personal/";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
extraConfig = {
|
||||||
|
core = {
|
||||||
|
autocrlf = "input";
|
||||||
|
safecrlf = "true";
|
||||||
|
excludesFile = "~/.config/git/.gitignore";
|
||||||
|
};
|
||||||
|
column = {
|
||||||
|
ui = "auto";
|
||||||
|
};
|
||||||
|
fetch = {
|
||||||
|
prune = true;
|
||||||
|
pruneTags = true;
|
||||||
|
all = true;
|
||||||
|
};
|
||||||
|
help = {
|
||||||
|
autocorrect = true;
|
||||||
|
};
|
||||||
|
diff = {
|
||||||
|
algorithm = "histogram";
|
||||||
|
colorMoved = "plain";
|
||||||
|
mnemonicPrefix = true;
|
||||||
|
renames = true;
|
||||||
|
};
|
||||||
|
rebase = {
|
||||||
|
autoSquash = true;
|
||||||
|
autoStash = true;
|
||||||
|
updateRefs = true;
|
||||||
|
};
|
||||||
|
rerere = {
|
||||||
|
enabled = true;
|
||||||
|
autoupdate = true;
|
||||||
|
};
|
||||||
|
commit = {
|
||||||
|
verbose = true;
|
||||||
|
};
|
||||||
|
branch = {
|
||||||
|
sort = "-committerdate";
|
||||||
|
};
|
||||||
|
merge = {
|
||||||
|
conflictstyle = "zdiff3";
|
||||||
|
};
|
||||||
|
push = {
|
||||||
|
autoSetupRemote = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Copy Configuration
|
||||||
|
xdg.configFile = {
|
||||||
|
git = {
|
||||||
|
source = ./config;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
86
home-manager/home.nix
Normal file
86
home-manager/home.nix
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
inherit (pkgs.lib) optionals mkForce;
|
||||||
|
inherit (pkgs.stdenv) isLinux isDarwin;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./bash
|
||||||
|
./btop
|
||||||
|
./direnv
|
||||||
|
./fastfetch
|
||||||
|
./ghostty
|
||||||
|
./git
|
||||||
|
./nvim
|
||||||
|
./powerline
|
||||||
|
./readline
|
||||||
|
./hyprland
|
||||||
|
./waybar
|
||||||
|
];
|
||||||
|
|
||||||
|
# Home Manager Config
|
||||||
|
home.stateVersion = "24.11";
|
||||||
|
home.username = "evanreichard";
|
||||||
|
home.homeDirectory = mkForce (if isLinux then "/home/evanreichard" else "/Users/evanreichard");
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
|
# Global Packages
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
(nerdfonts.override { fonts = [ "Meslo" ]; })
|
||||||
|
# ghostty - Pending Darwin @ https://github.com/NixOS/nixpkgs/pull/369788
|
||||||
|
android-tools
|
||||||
|
awscli2
|
||||||
|
bashInteractive
|
||||||
|
cw
|
||||||
|
fastfetch
|
||||||
|
gitAndTools.gh
|
||||||
|
google-cloud-sdk
|
||||||
|
imagemagick
|
||||||
|
kubectl
|
||||||
|
kubernetes-helm
|
||||||
|
mosh
|
||||||
|
pre-commit
|
||||||
|
python311
|
||||||
|
ssm-session-manager-plugin
|
||||||
|
texliveSmall # Pandoc PDF Dep
|
||||||
|
thefuck
|
||||||
|
tldr
|
||||||
|
]
|
||||||
|
++ optionals isLinux [
|
||||||
|
ghostty
|
||||||
|
hyprpaper
|
||||||
|
firefox
|
||||||
|
]
|
||||||
|
++ optionals isDarwin [ ];
|
||||||
|
|
||||||
|
# GitHub CLI
|
||||||
|
programs.gh = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
git_protocol = "ssh";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Misc Programs
|
||||||
|
programs.jq.enable = true;
|
||||||
|
programs.k9s.enable = true;
|
||||||
|
programs.pandoc.enable = true;
|
||||||
|
|
||||||
|
# Enable Flakes & Commands
|
||||||
|
nix = {
|
||||||
|
package = mkForce pkgs.nix;
|
||||||
|
settings = {
|
||||||
|
experimental-features = "nix-command flakes";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# SQLite Configuration
|
||||||
|
home.file.".sqliterc".text = ''
|
||||||
|
.headers on
|
||||||
|
.mode column
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Darwin Spotlight Indexing Hack
|
||||||
|
disabledModules = [ "targets/darwin/linkapps.nix" ];
|
||||||
|
}
|
74
modules/home/programs/graphical/wms/hyprland/config/hyprland.conf → home-manager/hyprland/config/hyprland.conf
Executable file → Normal file
74
modules/home/programs/graphical/wms/hyprland/config/hyprland.conf → home-manager/hyprland/config/hyprland.conf
Executable file → Normal file
@ -1,10 +1,30 @@
|
|||||||
|
|
||||||
|
# #######################################################################################
|
||||||
|
# AUTOGENERATED HYPR CONFIG.
|
||||||
|
# PLEASE USE THE CONFIG PROVIDED IN THE GIT REPO /examples/hypr.conf AND EDIT IT,
|
||||||
|
# OR EDIT THIS ONE ACCORDING TO THE WIKI INSTRUCTIONS.
|
||||||
|
# #######################################################################################
|
||||||
|
|
||||||
|
# This is an example Hyprland config file.
|
||||||
|
# Refer to the wiki for more information.
|
||||||
|
# https://wiki.hyprland.org/Configuring/
|
||||||
|
|
||||||
|
# Please note not all available settings / options are set here.
|
||||||
|
# For a full list, see the wiki
|
||||||
|
|
||||||
|
# You can split this configuration into multiple files
|
||||||
|
# Create your files separately and then link them to this file like this:
|
||||||
|
# source = ~/.config/hypr/myColors.conf
|
||||||
|
|
||||||
|
|
||||||
################
|
################
|
||||||
### MONITORS ###
|
### MONITORS ###
|
||||||
################
|
################
|
||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||||
monitor=,highres,auto,1.68 # 2
|
monitor=,preferred,auto,1.0
|
||||||
debug:disable_scale_checks = true
|
# monitor=HDMI-A-1,1920x1080,0x0,1
|
||||||
|
|
||||||
|
|
||||||
###################
|
###################
|
||||||
### MY PROGRAMS ###
|
### MY PROGRAMS ###
|
||||||
@ -27,9 +47,7 @@ $menu = wofi --show drun
|
|||||||
|
|
||||||
# exec-once = $terminal
|
# exec-once = $terminal
|
||||||
# exec-once = nm-applet &
|
# exec-once = nm-applet &
|
||||||
exec-once = uwsm app -- waybar
|
exec-once = waybar & $terminal & firefox
|
||||||
exec-once = uwsm app -- $terminal
|
|
||||||
exec-once = uwsm app -- firefox
|
|
||||||
|
|
||||||
|
|
||||||
#############################
|
#############################
|
||||||
@ -51,7 +69,7 @@ env = HYPRCURSOR_SIZE,24
|
|||||||
# https://wiki.hyprland.org/Configuring/Variables/#general
|
# https://wiki.hyprland.org/Configuring/Variables/#general
|
||||||
general {
|
general {
|
||||||
gaps_in = 5
|
gaps_in = 5
|
||||||
gaps_out = 12
|
gaps_out = 20
|
||||||
|
|
||||||
border_size = 2
|
border_size = 2
|
||||||
|
|
||||||
@ -72,6 +90,7 @@ general {
|
|||||||
decoration {
|
decoration {
|
||||||
rounding = 10
|
rounding = 10
|
||||||
|
|
||||||
|
# Change transparency of focused and unfocused windows
|
||||||
active_opacity = 1.0
|
active_opacity = 1.0
|
||||||
inactive_opacity = 1.0
|
inactive_opacity = 1.0
|
||||||
|
|
||||||
@ -82,19 +101,21 @@ decoration {
|
|||||||
color = rgba(1a1a1aee)
|
color = rgba(1a1a1aee)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
||||||
blur {
|
blur {
|
||||||
enabled = true
|
enabled = true
|
||||||
size = 3
|
size = 3
|
||||||
passes = 1
|
passes = 1
|
||||||
|
|
||||||
vibrancy = 0.1696
|
vibrancy = 0.1696
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#animations
|
# https://wiki.hyprland.org/Configuring/Variables/#animations
|
||||||
#https://wiki.hyprland.org/Configuring/Animations/
|
|
||||||
animations {
|
animations {
|
||||||
enabled = yes, please :)
|
enabled = yes, please :)
|
||||||
|
|
||||||
|
# Default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
|
||||||
|
|
||||||
bezier = easeOutQuint,0.23,1,0.32,1
|
bezier = easeOutQuint,0.23,1,0.32,1
|
||||||
bezier = easeInOutCubic,0.65,0.05,0.36,1
|
bezier = easeInOutCubic,0.65,0.05,0.36,1
|
||||||
@ -162,51 +183,40 @@ input {
|
|||||||
|
|
||||||
follow_mouse = 1
|
follow_mouse = 1
|
||||||
|
|
||||||
sensitivity = 0.0 # -1.0 - 1.0, 0 means no modification.
|
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||||
|
|
||||||
touchpad {
|
touchpad {
|
||||||
scroll_factor = 0.5
|
natural_scroll = false
|
||||||
disable_while_typing = true
|
|
||||||
natural_scroll = true
|
|
||||||
clickfinger_behavior = true
|
|
||||||
tap-to-click = false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
||||||
gestures {
|
gestures {
|
||||||
workspace_swipe = true
|
workspace_swipe = false
|
||||||
workspace_swipe_fingers = 4
|
|
||||||
workspace_swipe_invert = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Example per-device config
|
# Example per-device config
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs for more
|
# See https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs for more
|
||||||
# device {
|
device {
|
||||||
# name = epic-mouse-v1
|
name = epic-mouse-v1
|
||||||
# sensitivity = -0.5
|
sensitivity = -0.5
|
||||||
# }
|
}
|
||||||
|
|
||||||
|
|
||||||
###################
|
###################
|
||||||
### KEYBINDINGS ###
|
### KEYBINDINGS ###
|
||||||
###################
|
###################
|
||||||
|
|
||||||
# Super Bindings (macOS Transition)
|
|
||||||
bind = SUPER_SHIFT, 1, exec, hyprshot -m output
|
|
||||||
bind = SUPER_SHIFT, 2, exec, hyprshot -m window
|
|
||||||
bind = SUPER_SHIFT, 3, exec, hyprshot -m region
|
|
||||||
bind = SUPER, Q, killactive,
|
|
||||||
bind = SUPER, SPACE, exec, $menu
|
|
||||||
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/
|
# See https://wiki.hyprland.org/Configuring/Keywords/
|
||||||
$mainMod = ALT # Sets "Windows" key as main modifier
|
$mainMod = SUPER # Sets "Windows" key as main modifier
|
||||||
|
|
||||||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||||
bind = $mainMod, RETURN, exec, $terminal
|
bind = $mainMod, Q, exec, $terminal
|
||||||
|
bind = $mainMod, C, killactive,
|
||||||
bind = $mainMod, M, exit,
|
bind = $mainMod, M, exit,
|
||||||
bind = $mainMod, E, exec, $fileManager
|
bind = $mainMod, E, exec, $fileManager
|
||||||
bind = $mainMod, V, togglefloating,
|
bind = $mainMod, V, togglefloating,
|
||||||
|
bind = $mainMod, R, exec, $menu
|
||||||
bind = $mainMod, P, pseudo, # dwindle
|
bind = $mainMod, P, pseudo, # dwindle
|
||||||
bind = $mainMod, J, togglesplit, # dwindle
|
bind = $mainMod, J, togglesplit, # dwindle
|
||||||
|
|
||||||
@ -252,7 +262,7 @@ bind = $mainMod, mouse_up, workspace, e-1
|
|||||||
bindm = $mainMod, mouse:272, movewindow
|
bindm = $mainMod, mouse:272, movewindow
|
||||||
bindm = $mainMod, mouse:273, resizewindow
|
bindm = $mainMod, mouse:273, resizewindow
|
||||||
|
|
||||||
# Generic Laptop Multimedia Keys for Volume and LCD brightness
|
# Laptop multimedia keys for volume and LCD brightness
|
||||||
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
|
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
|
||||||
bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
||||||
bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||||
@ -260,10 +270,6 @@ bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle
|
|||||||
bindel = ,XF86MonBrightnessUp, exec, brightnessctl s 10%+
|
bindel = ,XF86MonBrightnessUp, exec, brightnessctl s 10%+
|
||||||
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%-
|
bindel = ,XF86MonBrightnessDown, exec, brightnessctl s 10%-
|
||||||
|
|
||||||
# macOS Keyboard Brightness
|
|
||||||
bindel = ALT, XF86MonBrightnessUp, exec, brightnessctl -d kbd_backlight s 10%+
|
|
||||||
bindel = ALT, XF86MonBrightnessDown, exec, brightnessctl -d kbd_backlight s 10%-
|
|
||||||
|
|
||||||
# Requires playerctl
|
# Requires playerctl
|
||||||
bindl = , XF86AudioNext, exec, playerctl next
|
bindl = , XF86AudioNext, exec, playerctl next
|
||||||
bindl = , XF86AudioPause, exec, playerctl play-pause
|
bindl = , XF86AudioPause, exec, playerctl play-pause
|
8
home-manager/hyprland/default.nix
Normal file
8
home-manager/hyprland/default.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{ pkgs, lib, ... }:
|
||||||
|
|
||||||
|
lib.mkIf pkgs.stdenv.isLinux {
|
||||||
|
wayland.windowManager.hyprland = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = builtins.readFile ./config/hyprland.conf;
|
||||||
|
};
|
||||||
|
}
|
0
modules/home/programs/terminal/nvim/config/lua/.luarc.json → home-manager/nvim/config/lua/.luarc.json
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/.luarc.json → home-manager/nvim/config/lua/.luarc.json
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/aerial-config.lua → home-manager/nvim/config/lua/aerial-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/aerial-config.lua → home-manager/nvim/config/lua/aerial-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/autopairs-config.lua → home-manager/nvim/config/lua/autopairs-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/autopairs-config.lua → home-manager/nvim/config/lua/autopairs-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/base.lua → home-manager/nvim/config/lua/base.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/base.lua → home-manager/nvim/config/lua/base.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/cmp-config.lua → home-manager/nvim/config/lua/cmp-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/cmp-config.lua → home-manager/nvim/config/lua/cmp-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/comment-config.lua → home-manager/nvim/config/lua/comment-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/comment-config.lua → home-manager/nvim/config/lua/comment-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/dap-config.lua → home-manager/nvim/config/lua/dap-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/dap-config.lua → home-manager/nvim/config/lua/dap-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/diffview-config.lua → home-manager/nvim/config/lua/diffview-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/diffview-config.lua → home-manager/nvim/config/lua/diffview-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/git-ref.lua → home-manager/nvim/config/lua/git-ref.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/git-ref.lua → home-manager/nvim/config/lua/git-ref.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/git-signs.lua → home-manager/nvim/config/lua/git-signs.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/git-signs.lua → home-manager/nvim/config/lua/git-signs.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/init.lua → home-manager/nvim/config/lua/init.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/init.lua → home-manager/nvim/config/lua/init.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/leap-config.lua → home-manager/nvim/config/lua/leap-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/leap-config.lua → home-manager/nvim/config/lua/leap-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/llm.lua → home-manager/nvim/config/lua/llm.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/llm.lua → home-manager/nvim/config/lua/llm.lua
Executable file → Normal file
3
modules/home/programs/terminal/nvim/config/lua/lsp-config.lua → home-manager/nvim/config/lua/lsp-config.lua
Executable file → Normal file
3
modules/home/programs/terminal/nvim/config/lua/lsp-config.lua → home-manager/nvim/config/lua/lsp-config.lua
Executable file → Normal file
@ -174,7 +174,8 @@ nvim_lsp.golangci_lint_ls.setup({
|
|||||||
command = {
|
command = {
|
||||||
"golangci-lint",
|
"golangci-lint",
|
||||||
"run",
|
"run",
|
||||||
"--output.json.path",
|
"--out-format",
|
||||||
|
"json",
|
||||||
"--issues-exit-code=1",
|
"--issues-exit-code=1",
|
||||||
},
|
},
|
||||||
},
|
},
|
0
modules/home/programs/terminal/nvim/config/lua/lsp-lines-config.lua → home-manager/nvim/config/lua/lsp-lines-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/lsp-lines-config.lua → home-manager/nvim/config/lua/lsp-lines-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/lualine-config.lua → home-manager/nvim/config/lua/lualine-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/lualine-config.lua → home-manager/nvim/config/lua/lualine-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/neotree-config.lua → home-manager/nvim/config/lua/neotree-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/neotree-config.lua → home-manager/nvim/config/lua/neotree-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/noice-config.lua → home-manager/nvim/config/lua/noice-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/noice-config.lua → home-manager/nvim/config/lua/noice-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/numb-config.lua → home-manager/nvim/config/lua/numb-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/numb-config.lua → home-manager/nvim/config/lua/numb-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/silicon-config.lua → home-manager/nvim/config/lua/silicon-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/silicon-config.lua → home-manager/nvim/config/lua/silicon-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/telescope-config.lua → home-manager/nvim/config/lua/telescope-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/telescope-config.lua → home-manager/nvim/config/lua/telescope-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/toggleterm-config.lua → home-manager/nvim/config/lua/toggleterm-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/toggleterm-config.lua → home-manager/nvim/config/lua/toggleterm-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/ts-config.lua → home-manager/nvim/config/lua/ts-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/ts-config.lua → home-manager/nvim/config/lua/ts-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/weird-chars.lua → home-manager/nvim/config/lua/weird-chars.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/weird-chars.lua → home-manager/nvim/config/lua/weird-chars.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/which-key-config.lua → home-manager/nvim/config/lua/which-key-config.lua
Executable file → Normal file
0
modules/home/programs/terminal/nvim/config/lua/which-key-config.lua → home-manager/nvim/config/lua/which-key-config.lua
Executable file → Normal file
194
home-manager/nvim/default.nix
Normal file
194
home-manager/nvim/default.nix
Normal file
@ -0,0 +1,194 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
viAlias = true;
|
||||||
|
vimAlias = true;
|
||||||
|
withNodeJs = true;
|
||||||
|
withPython3 = true;
|
||||||
|
|
||||||
|
plugins = with pkgs.vimPlugins; [
|
||||||
|
# ------------------
|
||||||
|
# --- Completion ---
|
||||||
|
# ------------------
|
||||||
|
cmp-buffer # Buffer Word Completion
|
||||||
|
cmp-cmdline # Command Line Completion
|
||||||
|
cmp-nvim-lsp # Main LSP
|
||||||
|
cmp-path # Path Completion
|
||||||
|
cmp_luasnip # Snippets Completion
|
||||||
|
friendly-snippets # Snippets
|
||||||
|
lsp_lines-nvim # Inline Diagnostics
|
||||||
|
luasnip # Snippets
|
||||||
|
nvim-cmp # Completions
|
||||||
|
nvim-lspconfig # LSP Config
|
||||||
|
|
||||||
|
# -------------------
|
||||||
|
# ----- Helpers -----
|
||||||
|
# -------------------
|
||||||
|
aerial-nvim # Code Outline
|
||||||
|
comment-nvim # Code Comments
|
||||||
|
diffview-nvim # Diff View
|
||||||
|
gitsigns-nvim # Git Blame
|
||||||
|
leap-nvim # Quick Movement
|
||||||
|
markdown-preview-nvim # Markdown Preview
|
||||||
|
neo-tree-nvim # File Explorer
|
||||||
|
none-ls-nvim # Formatters
|
||||||
|
numb-nvim # Peek / Jump to Lines
|
||||||
|
nvim-autopairs # Automatically Close Pairs (),[],{}
|
||||||
|
telescope-fzf-native-nvim # Faster Telescope
|
||||||
|
telescope-nvim # Fuzzy Finder
|
||||||
|
telescope-ui-select-nvim # UI
|
||||||
|
toggleterm-nvim # Terminal Helper
|
||||||
|
vim-nix # Nix Helpers
|
||||||
|
which-key-nvim # Shortcut Helper
|
||||||
|
|
||||||
|
# ------------------
|
||||||
|
# --- Theme / UI ---
|
||||||
|
# ------------------
|
||||||
|
lualine-nvim # Bottom Line
|
||||||
|
noice-nvim # UI Tweaks
|
||||||
|
# nord-nvim # Theme
|
||||||
|
melange-nvim # Theme
|
||||||
|
nvim-notify # Noice Dependency
|
||||||
|
nvim-web-devicons # Dev Icons
|
||||||
|
|
||||||
|
# ------------------
|
||||||
|
# --- Treesitter ---
|
||||||
|
# ------------------
|
||||||
|
nvim-treesitter-context
|
||||||
|
nvim-treesitter.withAllGrammars
|
||||||
|
|
||||||
|
# -------------------
|
||||||
|
# ------- DAP -------
|
||||||
|
# -------------------
|
||||||
|
nvim-dap
|
||||||
|
nvim-dap-go
|
||||||
|
nvim-dap-ui
|
||||||
|
|
||||||
|
# --------------------
|
||||||
|
# -- NONE-LS EXTRAS --
|
||||||
|
# --------------------
|
||||||
|
(
|
||||||
|
pkgs.vimUtils.buildVimPlugin {
|
||||||
|
pname = "none-ls-extras.nvim";
|
||||||
|
version = "2024-06-11";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "nvimtools";
|
||||||
|
repo = "none-ls-extras.nvim";
|
||||||
|
rev = "336e84b9e43c0effb735b08798ffac382920053b";
|
||||||
|
sha256 = "sha256-UtU4oWSRTKdEoMz3w8Pk95sROuo3LEwxSDAm169wxwk=";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/nvimtools/none-ls-extras.nvim/";
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
# -------------------
|
||||||
|
# ----- Silicon -----
|
||||||
|
# -------------------
|
||||||
|
(
|
||||||
|
pkgs.vimUtils.buildVimPlugin {
|
||||||
|
pname = "silicon.lua";
|
||||||
|
version = "2022-12-03";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "mhanberg";
|
||||||
|
repo = "silicon.lua";
|
||||||
|
rev = "5ca462bee0a39b058786bc7fbeb5d16ea49f3a23";
|
||||||
|
sha256 = "0vlp645d5mmii513v72jca931miyrhkvhwb9bfzhix1199zx7vi2";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/mhanberg/silicon.lua/";
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
# -------------------
|
||||||
|
# ------- LLM -------
|
||||||
|
# -------------------
|
||||||
|
(
|
||||||
|
pkgs.vimUtils.buildVimPlugin {
|
||||||
|
pname = "llm.nvim";
|
||||||
|
version = "2024-05-25";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "David-Kunz";
|
||||||
|
repo = "gen.nvim";
|
||||||
|
rev = "bd19cf584b5b82123de977b44105e855e61e5f39";
|
||||||
|
sha256 = "sha256-0AEB6im8Jz5foYzmL6KEGSAYo48g1bkFpjlCSWT6JeE=";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/David-Kunz/gen.nvim/";
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
# -------------------
|
||||||
|
# ---- LLAMA.VIM ----
|
||||||
|
# -------------------
|
||||||
|
(
|
||||||
|
pkgs.vimUtils.buildVimPlugin {
|
||||||
|
pname = "llama.vim";
|
||||||
|
version = "2025-01-23";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "ggml-org";
|
||||||
|
repo = "llama.vim";
|
||||||
|
rev = "143fe910b8d47a054ed464c38d8b7c17d5354468";
|
||||||
|
sha256 = "sha256-PW0HKzhSxcZiWzpDOuy98rl/X0o2nE7tMjZjwwh0qLE=";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/ggml-org/llama.vim/";
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
# Telescope Dependencies
|
||||||
|
fd
|
||||||
|
ripgrep
|
||||||
|
tree-sitter
|
||||||
|
|
||||||
|
# LSP Dependencies
|
||||||
|
go
|
||||||
|
golangci-lint
|
||||||
|
golangci-lint-langserver
|
||||||
|
gopls
|
||||||
|
lua-language-server
|
||||||
|
nil
|
||||||
|
nodePackages.eslint
|
||||||
|
nodePackages.svelte-language-server
|
||||||
|
nodePackages.typescript
|
||||||
|
nodePackages.typescript-language-server
|
||||||
|
nodePackages.vscode-langservers-extracted
|
||||||
|
pyright
|
||||||
|
eslint_d
|
||||||
|
|
||||||
|
# Formatters
|
||||||
|
luaformatter
|
||||||
|
nixpkgs-fmt
|
||||||
|
nodePackages.prettier
|
||||||
|
sqlfluff
|
||||||
|
stylua
|
||||||
|
|
||||||
|
# Silicon
|
||||||
|
silicon
|
||||||
|
];
|
||||||
|
|
||||||
|
extraConfig = ":luafile ~/.config/nvim/lua/init.lua";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
xdg.configFile = {
|
||||||
|
# Copy Configuration
|
||||||
|
nvim = {
|
||||||
|
source = ./config;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Generate Nix Vars
|
||||||
|
"nvim/lua/nix-vars.lua".text = ''
|
||||||
|
local nix_vars = {
|
||||||
|
gopls = "${pkgs.gopls}/bin/gopls",
|
||||||
|
luals = "${pkgs.lua-language-server}/bin/lua-language-server",
|
||||||
|
sveltels = "${pkgs.nodePackages.svelte-language-server}/bin/svelteserver",
|
||||||
|
tsls = "${pkgs.nodePackages.typescript-language-server}/bin/typescript-language-server",
|
||||||
|
golintls = "${pkgs.golangci-lint-langserver}/bin/golangci-lint-langserver",
|
||||||
|
vscls = "${pkgs.nodePackages.vscode-langservers-extracted}",
|
||||||
|
}
|
||||||
|
return nix_vars
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
16
home-manager/powerline/default.nix
Normal file
16
home-manager/powerline/default.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
programs.powerline-go = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
git-mode = "compact";
|
||||||
|
theme = "gruvbox";
|
||||||
|
};
|
||||||
|
modules = [
|
||||||
|
"host"
|
||||||
|
"cwd"
|
||||||
|
"git"
|
||||||
|
"docker"
|
||||||
|
"venv"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
10
home-manager/readline/default.nix
Normal file
10
home-manager/readline/default.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
programs.readline = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = ''
|
||||||
|
# Approximate VIM Dracula Colors
|
||||||
|
set vi-ins-mode-string \1\e[01;38;5;23;48;5;231m\2 I \1\e[38;5;231;48;5;238m\2\1\e[0m\2
|
||||||
|
set vi-cmd-mode-string \1\e[01;38;5;22;48;5;148m\2 C \1\e[38;5;148;48;5;238m\2\1\e[0m\2
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
88
home-manager/waybar/config/style.css
Normal file
88
home-manager/waybar/config/style.css
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
* {
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
font-family:
|
||||||
|
Cartograph CF Nerd Font,
|
||||||
|
monospace;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 14px;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
background: rgba(21, 18, 27, 0);
|
||||||
|
color: #cdd6f4;
|
||||||
|
}
|
||||||
|
|
||||||
|
tooltip {
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.active {
|
||||||
|
color: #9ccfd8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.focused {
|
||||||
|
color: #9ccfd8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.urgent {
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button:hover {
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-language,
|
||||||
|
#custom-updates,
|
||||||
|
#custom-caffeine,
|
||||||
|
#custom-weather,
|
||||||
|
#window,
|
||||||
|
#clock,
|
||||||
|
#battery,
|
||||||
|
#pulseaudio,
|
||||||
|
#network,
|
||||||
|
#workspaces,
|
||||||
|
#tray,
|
||||||
|
#backlight {
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray {
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces {
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-caffeine {
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-language {
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-updates {
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
}
|
||||||
|
|
||||||
|
#network {
|
||||||
|
}
|
||||||
|
|
||||||
|
#pulseaudio {
|
||||||
|
}
|
||||||
|
|
||||||
|
#pulseaudio.microphone {
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery {
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-weather {
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-endright {
|
||||||
|
}
|
114
home-manager/waybar/default.nix
Normal file
114
home-manager/waybar/default.nix
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
{ lib, pkgs, ... }:
|
||||||
|
lib.mkIf pkgs.stdenv.isLinux {
|
||||||
|
programs.waybar = {
|
||||||
|
enable = true;
|
||||||
|
style = builtins.readFile ./config/style.css;
|
||||||
|
settings = [{
|
||||||
|
layer = "top";
|
||||||
|
position = "top";
|
||||||
|
mod = "dock";
|
||||||
|
exclusive = true;
|
||||||
|
passtrough = false;
|
||||||
|
gtk-layer-shell = true;
|
||||||
|
height = 0;
|
||||||
|
modules-left = [
|
||||||
|
"hyprland/workspaces"
|
||||||
|
"custom/divider"
|
||||||
|
"custom/divider"
|
||||||
|
"cpu"
|
||||||
|
"custom/divider"
|
||||||
|
"memory"
|
||||||
|
];
|
||||||
|
modules-center = [ "hyprland/window" ];
|
||||||
|
modules-right = [
|
||||||
|
"tray"
|
||||||
|
"network"
|
||||||
|
"custom/divider"
|
||||||
|
"backlight"
|
||||||
|
"custom/divider"
|
||||||
|
"pulseaudio"
|
||||||
|
"custom/divider"
|
||||||
|
"battery"
|
||||||
|
"custom/divider"
|
||||||
|
"clock"
|
||||||
|
];
|
||||||
|
"hyprland/window" = { format = "{}"; };
|
||||||
|
"wlr/workspaces" = {
|
||||||
|
on-scroll-up = "hyprctl dispatch workspace e+1";
|
||||||
|
on-scroll-down = "hyprctl dispatch workspace e-1";
|
||||||
|
all-outputs = true;
|
||||||
|
on-click = "activate";
|
||||||
|
};
|
||||||
|
battery = { format = " {}%"; };
|
||||||
|
cpu = {
|
||||||
|
interval = 10;
|
||||||
|
format = " {}%";
|
||||||
|
max-length = 10;
|
||||||
|
on-click = "";
|
||||||
|
};
|
||||||
|
memory = {
|
||||||
|
interval = 30;
|
||||||
|
format = " {}%";
|
||||||
|
format-alt = " {used:0.1f}G";
|
||||||
|
max-length = 10;
|
||||||
|
};
|
||||||
|
backlight = {
|
||||||
|
format = " {}";
|
||||||
|
device = "acpi_video0";
|
||||||
|
};
|
||||||
|
tray = {
|
||||||
|
icon-size = 13;
|
||||||
|
tooltip = false;
|
||||||
|
spacing = 10;
|
||||||
|
};
|
||||||
|
network = {
|
||||||
|
format = " {essid}";
|
||||||
|
format-disconnected = " disconnected";
|
||||||
|
};
|
||||||
|
clock = {
|
||||||
|
format = " {:%I:%M %p %m/%d} ";
|
||||||
|
tooltip-format = ''
|
||||||
|
<big>{:%Y %B}</big>
|
||||||
|
<tt><small>{calendar}</small></tt>'';
|
||||||
|
};
|
||||||
|
pulseaudio = {
|
||||||
|
format = "{icon} {volume}%";
|
||||||
|
tooltip = false;
|
||||||
|
format-muted = " Muted";
|
||||||
|
on-click = "pamixer -t";
|
||||||
|
on-scroll-up = "pamixer -i 5";
|
||||||
|
on-scroll-down = "pamixer -d 5";
|
||||||
|
scroll-step = 5;
|
||||||
|
format-icons = {
|
||||||
|
headphone = "";
|
||||||
|
hands-free = "";
|
||||||
|
headset = "";
|
||||||
|
phone = "";
|
||||||
|
portable = "";
|
||||||
|
car = "";
|
||||||
|
default = [ "" "" "" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"pulseaudio#microphone" = {
|
||||||
|
format = "{format_source}";
|
||||||
|
tooltip = false;
|
||||||
|
format-source = " {volume}%";
|
||||||
|
format-source-muted = " Muted";
|
||||||
|
on-click = "pamixer --default-source -t";
|
||||||
|
on-scroll-up = "pamixer --default-source -i 5";
|
||||||
|
on-scroll-down = "pamixer --default-source -d 5";
|
||||||
|
scroll-step = 5;
|
||||||
|
};
|
||||||
|
"custom/divider" = {
|
||||||
|
format = " | ";
|
||||||
|
interval = "once";
|
||||||
|
tooltip = false;
|
||||||
|
};
|
||||||
|
"custom/endright" = {
|
||||||
|
format = "_";
|
||||||
|
interval = "once";
|
||||||
|
tooltip = false;
|
||||||
|
};
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
}
|
@ -1,57 +0,0 @@
|
|||||||
{ lib, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib.${namespace}) enabled;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
home.stateVersion = "24.11";
|
|
||||||
|
|
||||||
reichard = {
|
|
||||||
user = {
|
|
||||||
enable = true;
|
|
||||||
inherit (config.snowfallorg.user) name;
|
|
||||||
};
|
|
||||||
|
|
||||||
services = {
|
|
||||||
# TODO
|
|
||||||
# sops = {
|
|
||||||
# enable = true;
|
|
||||||
# defaultSopsFile = lib.snowfall.fs.get-file "secrets/mac-va-mbp-personal/evanreichard/default.yaml";
|
|
||||||
# sshKeyPaths = [ "${config.home.homeDirectory}/.ssh/id_ed25519" ];
|
|
||||||
# };
|
|
||||||
};
|
|
||||||
|
|
||||||
programs = {
|
|
||||||
graphical = {
|
|
||||||
ghostty = enabled;
|
|
||||||
ghidra = enabled;
|
|
||||||
};
|
|
||||||
|
|
||||||
terminal = {
|
|
||||||
btop = enabled;
|
|
||||||
direnv = enabled;
|
|
||||||
git = enabled;
|
|
||||||
k9s = enabled;
|
|
||||||
nvim = enabled;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Global Packages
|
|
||||||
# programs.jq = enabled;
|
|
||||||
# programs.pandoc = enabled;
|
|
||||||
# home.packages = with pkgs; [
|
|
||||||
# android-tools
|
|
||||||
# imagemagick
|
|
||||||
# mosh
|
|
||||||
# python311
|
|
||||||
# texliveSmall # Pandoc PDF Dep
|
|
||||||
# google-cloud-sdk
|
|
||||||
# tldr
|
|
||||||
# ];
|
|
||||||
|
|
||||||
# SQLite Configuration
|
|
||||||
home.file.".sqliterc".text = ''
|
|
||||||
.headers on
|
|
||||||
.mode column
|
|
||||||
'';
|
|
||||||
}
|
|
@ -1,57 +0,0 @@
|
|||||||
{ pkgs, lib, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib.${namespace}) enabled;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
home.stateVersion = "24.11";
|
|
||||||
|
|
||||||
reichard = {
|
|
||||||
user = {
|
|
||||||
enable = true;
|
|
||||||
inherit (config.snowfallorg.user) name;
|
|
||||||
};
|
|
||||||
|
|
||||||
services = {
|
|
||||||
# TODO
|
|
||||||
# sops = {
|
|
||||||
# enable = true;
|
|
||||||
# defaultSopsFile = lib.snowfall.fs.get-file "secrets/mac-va-mbp-work/evanreichard/default.yaml";
|
|
||||||
# sshKeyPaths = [ "${config.home.homeDirectory}/.ssh/id_ed25519" ];
|
|
||||||
# };
|
|
||||||
};
|
|
||||||
|
|
||||||
programs = {
|
|
||||||
graphical = {
|
|
||||||
ghostty = enabled;
|
|
||||||
};
|
|
||||||
|
|
||||||
terminal = {
|
|
||||||
btop = enabled;
|
|
||||||
direnv = enabled;
|
|
||||||
git = enabled;
|
|
||||||
k9s = enabled;
|
|
||||||
nvim = enabled;
|
|
||||||
aws = enabled;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Global Packages
|
|
||||||
programs.jq = enabled;
|
|
||||||
programs.pandoc = enabled;
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
android-tools
|
|
||||||
imagemagick
|
|
||||||
mosh
|
|
||||||
python311
|
|
||||||
texliveSmall # Pandoc PDF Dep
|
|
||||||
google-cloud-sdk
|
|
||||||
tldr
|
|
||||||
];
|
|
||||||
|
|
||||||
# SQLite Configuration
|
|
||||||
home.file.".sqliterc".text = ''
|
|
||||||
.headers on
|
|
||||||
.mode column
|
|
||||||
'';
|
|
||||||
}
|
|
@ -1,40 +0,0 @@
|
|||||||
# Nix Home Manager Configuration
|
|
||||||
|
|
||||||
## Upgrade
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Update System Channels
|
|
||||||
sudo nix-channel --add https://nixos.org/channels/nixpkgs-24.11-darwin nixpkgs
|
|
||||||
sudo nix-channel --update
|
|
||||||
|
|
||||||
# Update Home Manager
|
|
||||||
nix-channel --add https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz home-manager
|
|
||||||
nix-channel --update
|
|
||||||
|
|
||||||
# Link Repo
|
|
||||||
ln -s /Users/evanreichard/Development/git/personal/nix/home-manager ~/.config/home-manager
|
|
||||||
|
|
||||||
# Build Home Manager
|
|
||||||
home-manager switch
|
|
||||||
```
|
|
||||||
|
|
||||||
## Clean Garbage
|
|
||||||
|
|
||||||
NOTE: This will remove previous generations
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo nix-collect-garbage --delete-old
|
|
||||||
nix-collect-garbage --delete-old
|
|
||||||
```
|
|
||||||
|
|
||||||
## OS Update
|
|
||||||
|
|
||||||
`/etc/bashrc` may get overridden. To properly load Nix, prepend the following:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Nix
|
|
||||||
if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then
|
|
||||||
. '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
|
|
||||||
fi
|
|
||||||
# End Nix
|
|
||||||
```
|
|
@ -1,87 +0,0 @@
|
|||||||
{ pkgs, lib, config, namespace, osConfig, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib.${namespace}) enabled;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
home.stateVersion = "24.11";
|
|
||||||
|
|
||||||
reichard = {
|
|
||||||
user = {
|
|
||||||
enable = true;
|
|
||||||
inherit (config.snowfallorg.user) name;
|
|
||||||
};
|
|
||||||
|
|
||||||
services = {
|
|
||||||
ssh-agent = enabled;
|
|
||||||
fusuma = enabled;
|
|
||||||
sops = {
|
|
||||||
enable = true;
|
|
||||||
defaultSopsFile = lib.snowfall.fs.get-file "secrets/default.yaml";
|
|
||||||
sshKeyPaths = [ "${config.home.homeDirectory}/.ssh/id_ed25519" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs = {
|
|
||||||
graphical = {
|
|
||||||
wms.hyprland = enabled;
|
|
||||||
ghostty = enabled;
|
|
||||||
ghidra = enabled;
|
|
||||||
browsers.firefox = {
|
|
||||||
enable = true;
|
|
||||||
gpuAcceleration = true;
|
|
||||||
hardwareDecoding = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
terminal = {
|
|
||||||
btop = enabled;
|
|
||||||
direnv = enabled;
|
|
||||||
git = enabled;
|
|
||||||
k9s = enabled;
|
|
||||||
nvim = enabled;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
dconf = {
|
|
||||||
settings = {
|
|
||||||
"org/gnome/desktop/interface" = {
|
|
||||||
cursor-theme = "catppuccin-macchiato-mauve-cursors";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
home.pointerCursor = {
|
|
||||||
x11.enable = true;
|
|
||||||
gtk.enable = true;
|
|
||||||
package = pkgs.catppuccin-cursors.macchiatoMauve;
|
|
||||||
name = "catppuccin-macchiato-mauve-cursors";
|
|
||||||
size = 64;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Kubernetes Secrets
|
|
||||||
sops.secrets = lib.mkIf osConfig.${namespace}.security.sops.enable {
|
|
||||||
rke2_kubeconfig = {
|
|
||||||
path = "${config.home.homeDirectory}/.kube/rke2";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Global Packages
|
|
||||||
# programs.jq = enabled;
|
|
||||||
# programs.pandoc = enabled;
|
|
||||||
# home.packages = with pkgs; [
|
|
||||||
# android-tools
|
|
||||||
# imagemagick
|
|
||||||
# mosh
|
|
||||||
# python311
|
|
||||||
# texliveSmall # Pandoc PDF Dep
|
|
||||||
# google-cloud-sdk
|
|
||||||
# tldr
|
|
||||||
# ];
|
|
||||||
|
|
||||||
# SQLite Configuration
|
|
||||||
home.file.".sqliterc".text = ''
|
|
||||||
.headers on
|
|
||||||
.mode column
|
|
||||||
'';
|
|
||||||
}
|
|
19
hosts/builder.nix
Normal file
19
hosts/builder.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# User Authorized Keys
|
||||||
|
users.users.root = {
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIe1n9l9pVF5+kjWJCOt3AvBVf1HOSZkEDZxCWVPSIkr evan@reichard"
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEGGGpRpDQRstoqnCAQioSnh6PZRzNQL7lGJHksIkcoF builder"
|
||||||
|
];
|
||||||
|
hashedPassword = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
# System Packages
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
htop
|
||||||
|
tmux
|
||||||
|
vim
|
||||||
|
];
|
||||||
|
}
|
0
systems/x86_64-linux/lin-va-office/default.nix → hosts/office-server.nix
Executable file → Normal file
0
systems/x86_64-linux/lin-va-office/default.nix → hosts/office-server.nix
Executable file → Normal file
189
hosts/rke2-image.nix
Normal file
189
hosts/rke2-image.nix
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
{ pkgs, lib, modulesPath, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
(modulesPath + "/profiles/qemu-guest.nix")
|
||||||
|
];
|
||||||
|
config = {
|
||||||
|
# Basic System
|
||||||
|
system.stateVersion = "24.11";
|
||||||
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
time.timeZone = "UTC";
|
||||||
|
|
||||||
|
fileSystems."/" = {
|
||||||
|
device = "/dev/disk/by-label/nixos";
|
||||||
|
fsType = "ext4";
|
||||||
|
autoResize = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
boot = {
|
||||||
|
initrd = {
|
||||||
|
availableKernelModules = [
|
||||||
|
# Xen
|
||||||
|
"xen_blkfront"
|
||||||
|
"xen_netfront"
|
||||||
|
];
|
||||||
|
kernelModules = [ "xen_netfront" "xen_blkfront" ];
|
||||||
|
supportedFilesystems = [ "ext4" "xenfs" ];
|
||||||
|
};
|
||||||
|
kernelModules = [
|
||||||
|
# Xen VM Requirements
|
||||||
|
"xen_netfront"
|
||||||
|
"xen_blkfront"
|
||||||
|
"xenfs"
|
||||||
|
|
||||||
|
# iSCSI
|
||||||
|
"iscsi_tcp"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
# Add Intel Arc A310 GPU Drivers
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
hardware.enableRedistributableFirmware = true;
|
||||||
|
hardware.graphics = {
|
||||||
|
enable = true;
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
libvdpau-va-gl
|
||||||
|
intel-vaapi-driver
|
||||||
|
intel-media-driver
|
||||||
|
intel-compute-runtime
|
||||||
|
intel-ocl
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
# Network Configuration
|
||||||
|
networking = {
|
||||||
|
hostName = lib.mkForce "";
|
||||||
|
useNetworkd = true;
|
||||||
|
useDHCP = false;
|
||||||
|
|
||||||
|
firewall = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
allowedTCPPorts = [
|
||||||
|
# RKE2 Ports - https://docs.rke2.io/install/requirements#networking
|
||||||
|
6443 # Kubernetes API
|
||||||
|
9345 # RKE2 supervisor API
|
||||||
|
2379 # etcd Client Port
|
||||||
|
2380 # etcd Peer Port
|
||||||
|
2381 # etcd Metrics Port
|
||||||
|
10250 # kubelet metrics
|
||||||
|
9099 # Canal CNI health checks
|
||||||
|
];
|
||||||
|
|
||||||
|
allowedUDPPorts = [
|
||||||
|
# RKE2 Ports - https://docs.rke2.io/install/requirements#networking
|
||||||
|
8472 # Canal CNI with VXLAN
|
||||||
|
# 51820 # Canal CNI with WireGuard IPv4 (if using encryption)
|
||||||
|
# 51821 # Canal CNI with WireGuard IPv6 (if using encryption)
|
||||||
|
];
|
||||||
|
|
||||||
|
# Allow Multicast
|
||||||
|
extraCommands = ''
|
||||||
|
iptables -A INPUT -m pkttype --pkt-type multicast -j ACCEPT
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services = {
|
||||||
|
# Enable Xen Guest Utilities
|
||||||
|
xe-guest-utilities.enable = true;
|
||||||
|
|
||||||
|
# Enable iSCSI
|
||||||
|
openiscsi = {
|
||||||
|
enable = true;
|
||||||
|
name = "iqn.2025.placeholder:initiator"; # Overridden @ Runtime
|
||||||
|
};
|
||||||
|
|
||||||
|
# Cloud Init
|
||||||
|
cloud-init = {
|
||||||
|
enable = true;
|
||||||
|
network.enable = true;
|
||||||
|
settings = {
|
||||||
|
datasource_list = [ "NoCloud" ];
|
||||||
|
preserve_hostname = false;
|
||||||
|
system_info.distro = "nixos";
|
||||||
|
system_info.network.renderers = [ "networkd" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Enable SSH
|
||||||
|
openssh = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
PasswordAuthentication = false;
|
||||||
|
PermitRootLogin = "prohibit-password";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Enable RKE2
|
||||||
|
rke2 = {
|
||||||
|
enable = true;
|
||||||
|
disable = [ "rke2-ingress-nginx" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services = {
|
||||||
|
# RKE2 - Wait Cloud Init
|
||||||
|
rke2-server = {
|
||||||
|
after = [ "cloud-final.service" ];
|
||||||
|
requires = [ "cloud-final.service" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
# Runtime iSCSI Initiator Setup
|
||||||
|
iscsi-initiator-setup = {
|
||||||
|
description = "Setup iSCSI Initiator Name";
|
||||||
|
requires = [ "cloud-final.service" ];
|
||||||
|
before = [ "iscsid.service" ];
|
||||||
|
after = [ "cloud-final.service" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "oneshot";
|
||||||
|
RemainAfterExit = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
path = [ pkgs.hostname pkgs.util-linux ];
|
||||||
|
script = ''
|
||||||
|
mkdir -p /run/iscsi
|
||||||
|
echo "InitiatorName=iqn.2025.org.nixos:$(hostname)" > /run/iscsi/initiatorname.iscsi
|
||||||
|
mount --bind /run/iscsi/initiatorname.iscsi /etc/iscsi/initiatorname.iscsi
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# User Authorized Keys
|
||||||
|
users.users.root = {
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIe1n9l9pVF5+kjWJCOt3AvBVf1HOSZkEDZxCWVPSIkr evan@reichard"
|
||||||
|
];
|
||||||
|
hashedPassword = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Add Symlinks Expected by Democratic
|
||||||
|
system.activationScripts = {
|
||||||
|
iscsi-initiator = ''
|
||||||
|
mkdir -p /usr/bin
|
||||||
|
ln -sf ${pkgs.openiscsi}/bin/iscsiadm /usr/bin/iscsiadm
|
||||||
|
ln -sf ${pkgs.openiscsi}/bin/iscsid /usr/bin/iscsid
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
# System Packages
|
||||||
|
environment = {
|
||||||
|
systemPackages = with pkgs; [
|
||||||
|
htop
|
||||||
|
intel-gpu-tools
|
||||||
|
k9s
|
||||||
|
kubectl
|
||||||
|
kubernetes-helm
|
||||||
|
nfs-utils
|
||||||
|
openiscsi
|
||||||
|
tmux
|
||||||
|
vim
|
||||||
|
];
|
||||||
|
|
||||||
|
# Don't Manage - Runtime Generation
|
||||||
|
etc."iscsi/initiatorname.iscsi".enable = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
46
hosts/usb-image.nix
Normal file
46
hosts/usb-image.nix
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# Basic System
|
||||||
|
system.stateVersion = "24.11";
|
||||||
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
time.timeZone = "UTC";
|
||||||
|
|
||||||
|
fileSystems."/" = {
|
||||||
|
device = "/dev/disk/by-label/nixos";
|
||||||
|
fsType = "ext4";
|
||||||
|
autoResize = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# SSH
|
||||||
|
services.openssh = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
PasswordAuthentication = false;
|
||||||
|
PermitRootLogin = "prohibit-password";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Firewall Configuration
|
||||||
|
networking.firewall = {
|
||||||
|
enable = true;
|
||||||
|
allowedTCPPorts = [
|
||||||
|
22
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
# User Authorized Keys
|
||||||
|
users.users.root = {
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIe1n9l9pVF5+kjWJCOt3AvBVf1HOSZkEDZxCWVPSIkr evan@reichard"
|
||||||
|
];
|
||||||
|
hashedPassword = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
# System Packages
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
htop
|
||||||
|
tmux
|
||||||
|
vim
|
||||||
|
];
|
||||||
|
}
|
0
systems/x86_64-linux/lin-va-utility/default.nix → hosts/utility-desktop.nix
Executable file → Normal file
0
systems/x86_64-linux/lin-va-utility/default.nix → hosts/utility-desktop.nix
Executable file → Normal file
103
lib/common-system.nix
Normal file
103
lib/common-system.nix
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
{
|
||||||
|
# NixOS Config
|
||||||
|
options = {
|
||||||
|
hostName = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "The node hostname";
|
||||||
|
};
|
||||||
|
enableXenGuest = lib.mkOption {
|
||||||
|
type = lib.types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Whether to enable Xen guest support";
|
||||||
|
};
|
||||||
|
network = lib.mkOption {
|
||||||
|
type = lib.types.submodule {
|
||||||
|
options = {
|
||||||
|
interface = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "Network interface name";
|
||||||
|
example = "enp0s3";
|
||||||
|
};
|
||||||
|
address = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "Static IP address";
|
||||||
|
example = "10.0.20.200";
|
||||||
|
};
|
||||||
|
defaultGateway = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = "Default gateway IP";
|
||||||
|
example = "10.0.20.254";
|
||||||
|
};
|
||||||
|
nameservers = lib.mkOption {
|
||||||
|
type = lib.types.listOf lib.types.str;
|
||||||
|
description = "List of DNS servers";
|
||||||
|
example = [ "10.0.20.254" "8.8.8.8" ];
|
||||||
|
default = [ "8.8.8.8" "8.8.4.4" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
default = null;
|
||||||
|
description = "Network configuration";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkMerge [
|
||||||
|
{
|
||||||
|
# Basic System
|
||||||
|
system.stateVersion = "24.11";
|
||||||
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
networking.hostName = config.hostName;
|
||||||
|
|
||||||
|
# Boot Loader Options
|
||||||
|
boot.loader = {
|
||||||
|
systemd-boot.enable = true;
|
||||||
|
efi = {
|
||||||
|
canTouchEfiVariables = true;
|
||||||
|
efiSysMountPoint = "/boot";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Enable SSH
|
||||||
|
services.openssh = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
PasswordAuthentication = false;
|
||||||
|
PermitRootLogin = "prohibit-password";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# User Authorized Keys
|
||||||
|
users.users.root = {
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIe1n9l9pVF5+kjWJCOt3AvBVf1HOSZkEDZxCWVPSIkr evan@reichard"
|
||||||
|
];
|
||||||
|
hashedPassword = null;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
# Network Configuration
|
||||||
|
(lib.mkIf (config.network != null) {
|
||||||
|
networking = {
|
||||||
|
inherit (config.network) defaultGateway nameservers;
|
||||||
|
interfaces.${config.network.interface}.ipv4.addresses = [{
|
||||||
|
inherit (config.network) address;
|
||||||
|
prefixLength = 24;
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
||||||
|
# Xen Guest Configuration
|
||||||
|
(lib.mkIf config.enableXenGuest {
|
||||||
|
services.xe-guest-utilities.enable = true;
|
||||||
|
|
||||||
|
boot.initrd = {
|
||||||
|
availableKernelModules = [ "xen_blkfront" "xen_netfront" ];
|
||||||
|
kernelModules = [ "xen_netfront" "xen_blkfront" ];
|
||||||
|
supportedFilesystems = [ "ext4" "xenfs" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
boot.kernelModules = [ "xen_netfront" "xen_blkfront" "xenfs" ];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
@ -1,22 +1,18 @@
|
|||||||
{ config, lib, namespace, ... }:
|
{ config, lib, ... }: {
|
||||||
let
|
options = {
|
||||||
inherit (lib.${namespace}) mkOpt;
|
mainDiskID = lib.mkOption {
|
||||||
inherit (lib) mkIf types;
|
type = lib.types.str;
|
||||||
|
description = "Device path for the main disk";
|
||||||
cfg = config.${namespace}.system.disk;
|
example = "/dev/disk/by-id/ata-VBOX_HARDDISK_VBcd9425b8-d666f9b8";
|
||||||
in
|
};
|
||||||
{
|
|
||||||
options.${namespace}.system.disk = {
|
|
||||||
enable = lib.mkEnableOption "Disko Configuration";
|
|
||||||
diskPath = mkOpt types.str null "Device path for the main disk";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = {
|
||||||
disko.devices = {
|
disko.devices = {
|
||||||
disk = {
|
disk = {
|
||||||
main = {
|
main = {
|
||||||
type = "disk";
|
type = "disk";
|
||||||
device = cfg.diskPath;
|
device = config.mainDiskID;
|
||||||
content = {
|
content = {
|
||||||
type = "gpt";
|
type = "gpt";
|
||||||
partitions = {
|
partitions = {
|
||||||
@ -38,14 +34,6 @@ in
|
|||||||
mountpoint = "/";
|
mountpoint = "/";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
swap = {
|
|
||||||
size = "32G";
|
|
||||||
content = {
|
|
||||||
type = "swap";
|
|
||||||
discardPolicy = "both";
|
|
||||||
resumeDevice = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
@ -1,19 +0,0 @@
|
|||||||
{ lib, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkOption types;
|
|
||||||
in
|
|
||||||
rec {
|
|
||||||
mkOpt =
|
|
||||||
type: default: description:
|
|
||||||
mkOption { inherit type default description; };
|
|
||||||
|
|
||||||
mkBoolOpt = mkOpt types.bool;
|
|
||||||
|
|
||||||
enabled = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
disabled = {
|
|
||||||
enable = false;
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,114 +0,0 @@
|
|||||||
{ config, lib, pkgs, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib)
|
|
||||||
types
|
|
||||||
mkIf
|
|
||||||
mkMerge
|
|
||||||
optionalAttrs
|
|
||||||
;
|
|
||||||
inherit (lib.${namespace}) mkBoolOpt mkOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.programs.graphical.browsers.firefox;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
imports = lib.snowfall.fs.get-non-default-nix-files ./.;
|
|
||||||
|
|
||||||
options.${namespace}.programs.graphical.browsers.firefox = with types; {
|
|
||||||
enable = lib.mkEnableOption "Firefox";
|
|
||||||
|
|
||||||
extraConfig = mkOpt str "" "Extra configuration for the user profile JS file.";
|
|
||||||
gpuAcceleration = mkBoolOpt false "Enable GPU acceleration.";
|
|
||||||
hardwareDecoding = mkBoolOpt false "Enable hardware video decoding.";
|
|
||||||
|
|
||||||
policies = mkOpt attrs
|
|
||||||
{
|
|
||||||
CaptivePortal = false;
|
|
||||||
DisableFirefoxStudies = true;
|
|
||||||
DisableFormHistory = true;
|
|
||||||
DisablePocket = true;
|
|
||||||
DisableTelemetry = true;
|
|
||||||
DisplayBookmarksToolbar = false;
|
|
||||||
DontCheckDefaultBrowser = true;
|
|
||||||
FirefoxHome = {
|
|
||||||
Pocket = false;
|
|
||||||
Snippets = false;
|
|
||||||
};
|
|
||||||
PasswordManagerEnabled = false;
|
|
||||||
UserMessaging = {
|
|
||||||
ExtensionRecommendations = false;
|
|
||||||
SkipOnboarding = true;
|
|
||||||
};
|
|
||||||
ExtensionSettings = {
|
|
||||||
# Block All
|
|
||||||
# "*".installation_mode = "blocked";
|
|
||||||
|
|
||||||
# Bypass Paywalls
|
|
||||||
"magnolia@12.34" = {
|
|
||||||
install_url = "https://gitflic.ru/project/magnolia1234/bpc_uploads/blob/raw?file=bypass_paywalls_clean-latest.xpi";
|
|
||||||
installation_mode = "force_installed";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
Preferences = { };
|
|
||||||
} "Policies to apply to firefox";
|
|
||||||
|
|
||||||
settings = mkOpt attrs { } "Settings to apply to the profile.";
|
|
||||||
|
|
||||||
extensions = mkOpt (with lib.types; listOf package)
|
|
||||||
(with pkgs.firefox-addons; [
|
|
||||||
bitwarden
|
|
||||||
darkreader
|
|
||||||
gruvbox-dark-theme
|
|
||||||
kagi-search
|
|
||||||
sponsorblock
|
|
||||||
ublock-origin
|
|
||||||
|
|
||||||
# bypass-paywalls-clean
|
|
||||||
]) "Extensions to install";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.firefox = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
inherit (cfg) policies;
|
|
||||||
|
|
||||||
profiles = {
|
|
||||||
${config.${namespace}.user.name} = {
|
|
||||||
inherit (cfg) extraConfig extensions;
|
|
||||||
inherit (config.${namespace}.user) name;
|
|
||||||
|
|
||||||
id = 0;
|
|
||||||
|
|
||||||
settings = mkMerge [
|
|
||||||
cfg.settings
|
|
||||||
{
|
|
||||||
"browser.aboutConfig.showWarning" = false;
|
|
||||||
"browser.aboutwelcome.enabled" = false;
|
|
||||||
"browser.sessionstore.warnOnQuit" = true;
|
|
||||||
"browser.shell.checkDefaultBrowser" = false;
|
|
||||||
"general.smoothScroll.msdPhysics.enabled" = true;
|
|
||||||
"intl.accept_languages" = "en-US,en";
|
|
||||||
"ui.key.accelKey" = "224";
|
|
||||||
|
|
||||||
# "devtools.chrome.enabled" = true;
|
|
||||||
# "xpinstall.signatures.required" = false;
|
|
||||||
}
|
|
||||||
(optionalAttrs cfg.gpuAcceleration {
|
|
||||||
"dom.webgpu.enabled" = true;
|
|
||||||
"gfx.webrender.all" = true;
|
|
||||||
"layers.gpu-process.enabled" = true;
|
|
||||||
"layers.mlgpu.enabled" = true;
|
|
||||||
})
|
|
||||||
(optionalAttrs cfg.hardwareDecoding {
|
|
||||||
"media.ffmpeg.vaapi.enabled" = true;
|
|
||||||
"media.gpu-process-decoder" = true;
|
|
||||||
"media.hardware-video-decoding.enabled" = true;
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
# userChrome = ./chrome/userChrome.css;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
{ pkgs, lib, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf mkEnableOption;
|
|
||||||
cfg = config.${namespace}.programs.graphical.ghidra;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.graphical.ghidra = {
|
|
||||||
enable = mkEnableOption "Enable Ghidra";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
home.packages = with pkgs; [ ghidra ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,56 +0,0 @@
|
|||||||
command = @BASH_PATH@ --login
|
|
||||||
macos-titlebar-style = tabs
|
|
||||||
auto-update = off
|
|
||||||
font-family = "MesloLGM Nerd Font Mono"
|
|
||||||
confirm-close-surface = true
|
|
||||||
|
|
||||||
# Keybindings - Tabs & Splits
|
|
||||||
keybind = cmd+t=new_tab
|
|
||||||
keybind = cmd+w=close_surface
|
|
||||||
keybind = cmd+d=new_split:right
|
|
||||||
keybind = cmd+shift+d=new_split:down
|
|
||||||
keybind = cmd+shift+enter=toggle_split_zoom
|
|
||||||
|
|
||||||
# Keybindings - Navigation - Splits
|
|
||||||
keybind = cmd+left=goto_split:left
|
|
||||||
keybind = cmd+right=goto_split:right
|
|
||||||
keybind = cmd+up=goto_split:up
|
|
||||||
keybind = cmd+down=goto_split:down
|
|
||||||
keybind = cmd+]=goto_split:next
|
|
||||||
keybind = cmd+[=goto_split:previous
|
|
||||||
|
|
||||||
# Keybindings - Navigation - Tabs
|
|
||||||
keybind = cmd+1=goto_tab:1
|
|
||||||
keybind = cmd+2=goto_tab:2
|
|
||||||
keybind = cmd+3=goto_tab:3
|
|
||||||
keybind = cmd+4=goto_tab:4
|
|
||||||
keybind = cmd+5=goto_tab:5
|
|
||||||
keybind = cmd+6=goto_tab:6
|
|
||||||
keybind = cmd+7=goto_tab:7
|
|
||||||
keybind = cmd+8=goto_tab:8
|
|
||||||
keybind = cmd+9=goto_tab:9
|
|
||||||
|
|
||||||
keybind = performable:cmd+c=copy_to_clipboard
|
|
||||||
keybind = performable:cmd+v=paste_from_clipboard
|
|
||||||
|
|
||||||
# Melange Dark - Adapted From: https://github.com/savq/melange-nvim/blob/master/term/kitty/melange_dark.conf
|
|
||||||
palette = 0=#34302C
|
|
||||||
palette = 1=#BD8183
|
|
||||||
palette = 2=#78997A
|
|
||||||
palette = 3=#E49B5D
|
|
||||||
palette = 4=#7F91B2
|
|
||||||
palette = 5=#B380B0
|
|
||||||
palette = 6=#7B9695
|
|
||||||
palette = 7=#C1A78E
|
|
||||||
palette = 8=#867462
|
|
||||||
palette = 9=#D47766
|
|
||||||
palette = 10=#85B695
|
|
||||||
palette = 11=#EBC06D
|
|
||||||
palette = 12=#A3A9CE
|
|
||||||
palette = 13=#CF9BC2
|
|
||||||
palette = 14=#89B3B6
|
|
||||||
palette = 15=#ECE1D7
|
|
||||||
background = 292522
|
|
||||||
foreground = ECE1D7
|
|
||||||
selection-background = 403A36
|
|
||||||
selection-foreground = ECE1D7
|
|
@ -1,77 +0,0 @@
|
|||||||
{ pkgs, lib, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (pkgs.stdenv) isLinux;
|
|
||||||
inherit (lib) mkIf mkEnableOption optionals;
|
|
||||||
cfg = config.${namespace}.programs.graphical.ghostty;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.graphical.ghostty = {
|
|
||||||
enable = mkEnableOption "Ghostty";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.bash = {
|
|
||||||
enable = true;
|
|
||||||
shellAliases = {
|
|
||||||
grep = "grep --color";
|
|
||||||
ssh = "TERM=xterm-256color ssh";
|
|
||||||
flush_dns = "sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder";
|
|
||||||
};
|
|
||||||
profileExtra = ''
|
|
||||||
SHELL="$BASH"
|
|
||||||
PATH=~/.bin:$PATH
|
|
||||||
VISUAL=vim
|
|
||||||
EDITOR="$VISUAL"
|
|
||||||
eval "$(thefuck --alias)"
|
|
||||||
set -o vi || true
|
|
||||||
bind "set show-mode-in-prompt on"
|
|
||||||
fastfetch
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.powerline-go = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
git-mode = "compact";
|
|
||||||
theme = "gruvbox";
|
|
||||||
};
|
|
||||||
modules = [
|
|
||||||
"host"
|
|
||||||
"cwd"
|
|
||||||
"git"
|
|
||||||
"docker"
|
|
||||||
"venv"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.readline = {
|
|
||||||
enable = true;
|
|
||||||
extraConfig = ''
|
|
||||||
# Approximate VIM Dracula Colors
|
|
||||||
set vi-ins-mode-string \1\e[01;38;5;23;48;5;231m\2 I \1\e[38;5;231;48;5;238m\2\1\e[0m\2
|
|
||||||
set vi-cmd-mode-string \1\e[01;38;5;22;48;5;148m\2 C \1\e[38;5;148;48;5;238m\2\1\e[0m\2
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
thefuck
|
|
||||||
fastfetch
|
|
||||||
bashInteractive
|
|
||||||
(nerdfonts.override { fonts = [ "Meslo" ]; })
|
|
||||||
] ++ optionals isLinux [
|
|
||||||
# Pending Darwin @ https://github.com/NixOS/nixpkgs/pull/369788
|
|
||||||
ghostty
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file.".config/fastfetch/config.jsonc".text = builtins.readFile ./config/fastfetch.jsonc;
|
|
||||||
home.file.".config/ghostty/config".text =
|
|
||||||
let
|
|
||||||
bashPath = "${pkgs.bashInteractive}/bin/bash";
|
|
||||||
in
|
|
||||||
builtins.replaceStrings
|
|
||||||
[ "@BASH_PATH@" ]
|
|
||||||
[ bashPath ]
|
|
||||||
(builtins.readFile ./config/ghostty.conf);
|
|
||||||
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,146 +0,0 @@
|
|||||||
@define-color rosewater #f5e0dc;
|
|
||||||
@define-color flamingo #f2cdcd;
|
|
||||||
@define-color pink #f5c2e7;
|
|
||||||
@define-color mauve #cba6f7;
|
|
||||||
@define-color red #f38ba8;
|
|
||||||
@define-color maroon #eba0ac;
|
|
||||||
@define-color peach #fab387;
|
|
||||||
@define-color yellow #f9e2af;
|
|
||||||
@define-color green #a6e3a1;
|
|
||||||
@define-color teal #94e2d5;
|
|
||||||
@define-color sky #89dceb;
|
|
||||||
@define-color sapphire #74c7ec;
|
|
||||||
@define-color blue #89b4fa;
|
|
||||||
@define-color lavender #b4befe;
|
|
||||||
@define-color text #cdd6f4;
|
|
||||||
@define-color subtext1 #bac2de;
|
|
||||||
@define-color subtext0 #a6adc8;
|
|
||||||
@define-color overlay2 #9399b2;
|
|
||||||
@define-color overlay1 #7f849c;
|
|
||||||
@define-color overlay0 #6c7086;
|
|
||||||
@define-color surface2 #585b70;
|
|
||||||
@define-color surface1 #45475a;
|
|
||||||
@define-color surface0 #313244;
|
|
||||||
@define-color base #1e1e2e;
|
|
||||||
@define-color mantle #181825;
|
|
||||||
@define-color crust #11111b;
|
|
||||||
|
|
||||||
/* Common Styles */
|
|
||||||
* {
|
|
||||||
font-family: FantasqueSansMono Nerd Font;
|
|
||||||
font-size: 14px;
|
|
||||||
min-height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Primary Waybar */
|
|
||||||
#waybar {
|
|
||||||
background: transparent;
|
|
||||||
color: @text;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Icon Only Sizes */
|
|
||||||
#network,
|
|
||||||
#backlight,
|
|
||||||
#battery {
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Node Styles */
|
|
||||||
#workspaces,
|
|
||||||
#window,
|
|
||||||
#tray,
|
|
||||||
#cpu,
|
|
||||||
#memory,
|
|
||||||
#pulseaudio,
|
|
||||||
#network,
|
|
||||||
#backlight,
|
|
||||||
#battery,
|
|
||||||
#clock {
|
|
||||||
margin-top: 1rem;
|
|
||||||
padding: 0.2px 1rem;
|
|
||||||
background-color: @surface0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces {
|
|
||||||
padding: 0px;
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button {
|
|
||||||
color: @lavender;
|
|
||||||
border-radius: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.active {
|
|
||||||
color: @sky;
|
|
||||||
background-color: @surface2;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button:hover {
|
|
||||||
color: @sapphire;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window {
|
|
||||||
background: transparent;
|
|
||||||
margin-left: 0.5rem;
|
|
||||||
margin-right: 8rem; /* Notch */
|
|
||||||
}
|
|
||||||
|
|
||||||
#memory {
|
|
||||||
color: @blue;
|
|
||||||
}
|
|
||||||
|
|
||||||
#pulseaudio {
|
|
||||||
color: @maroon;
|
|
||||||
}
|
|
||||||
|
|
||||||
#network {
|
|
||||||
color: @mauve;
|
|
||||||
}
|
|
||||||
|
|
||||||
#cpu {
|
|
||||||
color: @peach;
|
|
||||||
}
|
|
||||||
|
|
||||||
#backlight {
|
|
||||||
color: @yellow;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery {
|
|
||||||
color: @green;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.charging {
|
|
||||||
color: @green;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.warning:not(.charging) {
|
|
||||||
color: @red;
|
|
||||||
}
|
|
||||||
|
|
||||||
#clock {
|
|
||||||
color: @blue;
|
|
||||||
margin-right: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Left Border Radius */
|
|
||||||
#clock,
|
|
||||||
#network,
|
|
||||||
#cpu,
|
|
||||||
#tray,
|
|
||||||
#workspaces {
|
|
||||||
margin-left: 0.5rem;
|
|
||||||
border-top-left-radius: 1rem;
|
|
||||||
border-bottom-left-radius: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Right Border Radius */
|
|
||||||
#pulseaudio,
|
|
||||||
#clock,
|
|
||||||
#tray,
|
|
||||||
#battery,
|
|
||||||
#workspaces {
|
|
||||||
margin-right: 0.5rem;
|
|
||||||
border-top-right-radius: 1rem;
|
|
||||||
border-bottom-right-radius: 1rem;
|
|
||||||
}
|
|
@ -1,127 +0,0 @@
|
|||||||
window {
|
|
||||||
font-family: "Hack Nerd Font";
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
#outer-box {
|
|
||||||
padding: 10px;
|
|
||||||
border-radius: 8px;
|
|
||||||
background: #2e3440;
|
|
||||||
}
|
|
||||||
|
|
||||||
#scroll {
|
|
||||||
/* The Nordic gtk theme adds an outline to show scroll areas... */
|
|
||||||
outline-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
#input {
|
|
||||||
color: #e5e9f0;
|
|
||||||
caret-color: #e5e9f0;
|
|
||||||
background: #3b4252;
|
|
||||||
border-top-color: #3b4252;
|
|
||||||
border-left-color: #3b4252;
|
|
||||||
border-right-color: #3b4252;
|
|
||||||
border-bottom-color: #3b4252;
|
|
||||||
box-shadow: 0 0 0 1px transparent inset;
|
|
||||||
outline-color: transparent !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#input:focus {
|
|
||||||
background: #3b4252;
|
|
||||||
border-color: #3b4252 !important;
|
|
||||||
box-shadow: 0 0 0 1px transparent inset;
|
|
||||||
border-top-color: #3b4252 !important;
|
|
||||||
border-left-color: #3b4252 !important;
|
|
||||||
border-right-color: #3b4252 !important;
|
|
||||||
border-bottom-color: #3b4252 !important;
|
|
||||||
box-shadow: none !important;
|
|
||||||
outline-color: transparent !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#input image.left {
|
|
||||||
color: #d8dee9;
|
|
||||||
}
|
|
||||||
|
|
||||||
#input:focus image.left {
|
|
||||||
color: #e5e9f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#input image.right {
|
|
||||||
color: #d8dee9;
|
|
||||||
}
|
|
||||||
|
|
||||||
#input:focus image.right {
|
|
||||||
color: #e5e9f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
/* We set backgrounds on the block level. */
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
#scroll {
|
|
||||||
padding-top: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry {
|
|
||||||
color: #4c566a;
|
|
||||||
padding: 8px 8px;
|
|
||||||
border-radius: 4px;
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry:selected {
|
|
||||||
color: #eceff4;
|
|
||||||
background: #8fbcbb;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
expander arrow {
|
|
||||||
margin-right: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry #selected #text {
|
|
||||||
color: #eceff4;
|
|
||||||
}
|
|
||||||
|
|
||||||
expander list {
|
|
||||||
margin-top: 8px;
|
|
||||||
/* background: #8fbcbb; */
|
|
||||||
background: transparent;
|
|
||||||
padding-left: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
expander list #entry {
|
|
||||||
transition: none;
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
expander list #entry:hover,
|
|
||||||
expander list #entry:active {
|
|
||||||
/* color: #8fbcbb;
|
|
||||||
background: #e5e9f0; */
|
|
||||||
}
|
|
||||||
|
|
||||||
expander list #entry #selected {
|
|
||||||
background: #8fbcbb;
|
|
||||||
}
|
|
||||||
|
|
||||||
expander list #entry #selected label {
|
|
||||||
color: #eceff4;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
expander list #entry:hover,
|
|
||||||
expander list #entry:active {
|
|
||||||
background: #8fbcbb;
|
|
||||||
}
|
|
||||||
|
|
||||||
expander list #entry:hover label,
|
|
||||||
expander list #entry:active label {
|
|
||||||
color: #eceff4;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
expander list label {
|
|
||||||
color: #d8dee9;
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
stylesheet=./style.css
|
|
||||||
term=foot
|
|
||||||
insensitive=true
|
|
@ -1,190 +0,0 @@
|
|||||||
{ lib, pkgs, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
inherit (lib.${namespace}) enabled;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.programs.graphical.wms.hyprland;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.graphical.wms.hyprland = {
|
|
||||||
enable = lib.mkEnableOption "Hyprland";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
services.swaync = enabled;
|
|
||||||
services.hyprpaper = enabled;
|
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
|
||||||
enable = true;
|
|
||||||
extraConfig = builtins.readFile ./config/hyprland.conf;
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.waybar = {
|
|
||||||
enable = true;
|
|
||||||
style = builtins.readFile ./config/waybar-style.css;
|
|
||||||
settings = [{
|
|
||||||
layer = "top";
|
|
||||||
position = "top";
|
|
||||||
mod = "dock";
|
|
||||||
exclusive = true;
|
|
||||||
passtrough = false;
|
|
||||||
gtk-layer-shell = true;
|
|
||||||
height = 0;
|
|
||||||
modules-left = [
|
|
||||||
"hyprland/workspaces"
|
|
||||||
"hyprland/window"
|
|
||||||
];
|
|
||||||
# modules-center = [ "hyprland/window" ];
|
|
||||||
modules-right = [
|
|
||||||
"tray"
|
|
||||||
"cpu"
|
|
||||||
"memory"
|
|
||||||
"pulseaudio"
|
|
||||||
"network"
|
|
||||||
"backlight"
|
|
||||||
"battery"
|
|
||||||
"clock"
|
|
||||||
];
|
|
||||||
"hyprland/window" = { format = "{}"; };
|
|
||||||
"wlr/workspaces" = {
|
|
||||||
on-scroll-up = "hyprctl dispatch workspace e+1";
|
|
||||||
on-scroll-down = "hyprctl dispatch workspace e-1";
|
|
||||||
all-outputs = true;
|
|
||||||
on-click = "activate";
|
|
||||||
};
|
|
||||||
battery = {
|
|
||||||
states = {
|
|
||||||
warning = 30;
|
|
||||||
critical = 15;
|
|
||||||
};
|
|
||||||
format = "{icon}";
|
|
||||||
format-charging = "";
|
|
||||||
format-plugged = "";
|
|
||||||
format-alt = "{icon}";
|
|
||||||
format-icons = [
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
];
|
|
||||||
};
|
|
||||||
cpu = {
|
|
||||||
interval = 10;
|
|
||||||
format = " {}%";
|
|
||||||
max-length = 10;
|
|
||||||
on-click = "";
|
|
||||||
};
|
|
||||||
memory = {
|
|
||||||
interval = 30;
|
|
||||||
format = " {}%";
|
|
||||||
format-alt = " {used:0.1f}G";
|
|
||||||
max-length = 10;
|
|
||||||
};
|
|
||||||
# backlight = {
|
|
||||||
# format = " {}%";
|
|
||||||
# device = "acpi_video0";
|
|
||||||
# };
|
|
||||||
|
|
||||||
backlight = {
|
|
||||||
format = "{icon}";
|
|
||||||
format-icons = [
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
""
|
|
||||||
];
|
|
||||||
on-scroll-up = "brightnessctl s 1%-";
|
|
||||||
on-scroll-down = "brightnessctl s +1%";
|
|
||||||
};
|
|
||||||
tray = {
|
|
||||||
icon-size = 13;
|
|
||||||
tooltip = false;
|
|
||||||
spacing = 10;
|
|
||||||
};
|
|
||||||
network = {
|
|
||||||
interval = 1;
|
|
||||||
format-wifi = "";
|
|
||||||
format-ethernet = "";
|
|
||||||
format-linked = "";
|
|
||||||
format-disconnected = "";
|
|
||||||
on-click-right = "${pkgs.networkmanagerapplet}/bin/nm-connection-editor";
|
|
||||||
# tooltip-format = ''
|
|
||||||
# <big>Network Details</big>
|
|
||||||
# <tt><small>Interface: {ifname}</small></tt>
|
|
||||||
# <tt><small>IP: {ipaddr}/{cidr}</small></tt>
|
|
||||||
# <tt><small>Gateway: {gwaddr}</small></tt>
|
|
||||||
# <tt><small> {bandwidthUpBytes}\n {bandwidthDownBytes}</small></tt>'';
|
|
||||||
tooltip-format = ''
|
|
||||||
<big>Network Details</big>
|
|
||||||
<small>
|
|
||||||
Interface: {ifname}
|
|
||||||
SSID: {essid}
|
|
||||||
IP Address: {ipaddr}/{cidr}
|
|
||||||
Gateway: {gwaddr}
|
|
||||||
|
|
||||||
{bandwidthUpBytes} / {bandwidthDownBytes}
|
|
||||||
</small>'';
|
|
||||||
|
|
||||||
};
|
|
||||||
clock = {
|
|
||||||
format = " {:%Y-%m-%d %H:%M:%S}";
|
|
||||||
interval = 1;
|
|
||||||
tooltip-format = ''
|
|
||||||
<big>{:%Y %B}</big>
|
|
||||||
<tt><small>{calendar}</small></tt>'';
|
|
||||||
};
|
|
||||||
pulseaudio = {
|
|
||||||
format = "{icon} {volume}%";
|
|
||||||
tooltip = false;
|
|
||||||
format-muted = " Muted";
|
|
||||||
on-click = "pamixer -t";
|
|
||||||
on-scroll-up = "pamixer -i 5";
|
|
||||||
on-scroll-down = "pamixer -d 5";
|
|
||||||
scroll-step = 5;
|
|
||||||
format-icons = {
|
|
||||||
headphone = "";
|
|
||||||
hands-free = "";
|
|
||||||
headset = "";
|
|
||||||
phone = "";
|
|
||||||
portable = "";
|
|
||||||
car = "";
|
|
||||||
default = [ "" "" "" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
"pulseaudio#microphone" = {
|
|
||||||
format = "{format_source}";
|
|
||||||
tooltip = false;
|
|
||||||
format-source = " {volume}%";
|
|
||||||
format-source-muted = " Muted";
|
|
||||||
on-click = "pamixer --default-source -t";
|
|
||||||
on-scroll-up = "pamixer --default-source -i 5";
|
|
||||||
on-scroll-down = "pamixer --default-source -d 5";
|
|
||||||
scroll-step = 5;
|
|
||||||
};
|
|
||||||
}];
|
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
hyprshot
|
|
||||||
wofi
|
|
||||||
wofi-emoji
|
|
||||||
brightnessctl
|
|
||||||
];
|
|
||||||
|
|
||||||
xdg.configFile = {
|
|
||||||
"wofi/config".source = ./config/wofi.conf;
|
|
||||||
"wofi/style.css".source = ./config/wofi-style.css;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,18 +0,0 @@
|
|||||||
{ lib, pkgs, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
cfg = config.${namespace}.programs.terminal.aws;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.terminal.aws = {
|
|
||||||
enable = lib.mkEnableOption "AWS";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
cw
|
|
||||||
awscli2
|
|
||||||
ssm-session-manager-plugin
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
{ lib, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
cfg = config.${namespace}.programs.terminal.btop;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.terminal.btop = {
|
|
||||||
enable = lib.mkEnableOption "btop";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.btop.enable = true;
|
|
||||||
|
|
||||||
home.file.".config/btop/btop.conf".text =
|
|
||||||
builtins.readFile ./config/btop.conf;
|
|
||||||
home.file.".config/btop/themes/catppuccin_mocha.theme".text =
|
|
||||||
builtins.readFile ./config/catppuccin_mocha.theme;
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
{ lib, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
cfg = config.${namespace}.programs.terminal.direnv;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.terminal.direnv = {
|
|
||||||
enable = lib.mkEnableOption "direnv";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.direnv = {
|
|
||||||
enable = true;
|
|
||||||
nix-direnv.enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,98 +0,0 @@
|
|||||||
{ pkgs, lib, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
cfg = config.${namespace}.programs.terminal.git;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.terminal.git = {
|
|
||||||
enable = lib.mkEnableOption "Git";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.git = {
|
|
||||||
enable = true;
|
|
||||||
userName = "Evan Reichard";
|
|
||||||
aliases = {
|
|
||||||
lg = "log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all -n 15";
|
|
||||||
};
|
|
||||||
includes = [
|
|
||||||
{
|
|
||||||
path = "~/.config/git/work";
|
|
||||||
condition = "gitdir:~/Development/git/work/";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
path = "~/.config/git/personal";
|
|
||||||
condition = "gitdir:~/Development/git/personal/";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
extraConfig = {
|
|
||||||
user = {
|
|
||||||
email = "evan@reichard.io";
|
|
||||||
};
|
|
||||||
core = {
|
|
||||||
autocrlf = "input";
|
|
||||||
safecrlf = "true";
|
|
||||||
excludesFile = "~/.config/git/.gitignore";
|
|
||||||
};
|
|
||||||
column = {
|
|
||||||
ui = "auto";
|
|
||||||
};
|
|
||||||
fetch = {
|
|
||||||
prune = true;
|
|
||||||
pruneTags = true;
|
|
||||||
all = true;
|
|
||||||
};
|
|
||||||
help = {
|
|
||||||
autocorrect = true;
|
|
||||||
};
|
|
||||||
diff = {
|
|
||||||
algorithm = "histogram";
|
|
||||||
colorMoved = "plain";
|
|
||||||
mnemonicPrefix = true;
|
|
||||||
renames = true;
|
|
||||||
};
|
|
||||||
rebase = {
|
|
||||||
autoSquash = true;
|
|
||||||
autoStash = true;
|
|
||||||
updateRefs = true;
|
|
||||||
};
|
|
||||||
rerere = {
|
|
||||||
enabled = true;
|
|
||||||
autoupdate = true;
|
|
||||||
};
|
|
||||||
commit = {
|
|
||||||
verbose = true;
|
|
||||||
};
|
|
||||||
branch = {
|
|
||||||
sort = "-committerdate";
|
|
||||||
};
|
|
||||||
merge = {
|
|
||||||
conflictstyle = "zdiff3";
|
|
||||||
};
|
|
||||||
push = {
|
|
||||||
autoSetupRemote = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.gh = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
git_protocol = "ssh";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
gitAndTools.gh
|
|
||||||
pre-commit
|
|
||||||
];
|
|
||||||
|
|
||||||
# Copy Configuration
|
|
||||||
xdg.configFile = {
|
|
||||||
git = {
|
|
||||||
source = ./config;
|
|
||||||
recursive = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
{ lib, pkgs, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
cfg = config.${namespace}.programs.terminal.k9s;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.terminal.k9s = {
|
|
||||||
enable = lib.mkEnableOption "k9s";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.k9s.enable = true;
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
kubectl
|
|
||||||
kubernetes-helm
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,203 +0,0 @@
|
|||||||
{ pkgs, lib, config, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
cfg = config.${namespace}.programs.terminal.nvim;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.terminal.nvim = {
|
|
||||||
enable = lib.mkEnableOption "NeoVim";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.neovim = {
|
|
||||||
enable = true;
|
|
||||||
viAlias = true;
|
|
||||||
vimAlias = true;
|
|
||||||
withNodeJs = true;
|
|
||||||
withPython3 = true;
|
|
||||||
|
|
||||||
plugins = with pkgs.vimPlugins; [
|
|
||||||
# ------------------
|
|
||||||
# --- Completion ---
|
|
||||||
# ------------------
|
|
||||||
cmp-buffer # Buffer Word Completion
|
|
||||||
cmp-cmdline # Command Line Completion
|
|
||||||
cmp-nvim-lsp # Main LSP
|
|
||||||
cmp-path # Path Completion
|
|
||||||
cmp_luasnip # Snippets Completion
|
|
||||||
friendly-snippets # Snippets
|
|
||||||
lsp_lines-nvim # Inline Diagnostics
|
|
||||||
luasnip # Snippets
|
|
||||||
nvim-cmp # Completions
|
|
||||||
nvim-lspconfig # LSP Config
|
|
||||||
|
|
||||||
# -------------------
|
|
||||||
# ----- Helpers -----
|
|
||||||
# -------------------
|
|
||||||
aerial-nvim # Code Outline
|
|
||||||
comment-nvim # Code Comments
|
|
||||||
diffview-nvim # Diff View
|
|
||||||
gitsigns-nvim # Git Blame
|
|
||||||
leap-nvim # Quick Movement
|
|
||||||
markdown-preview-nvim # Markdown Preview
|
|
||||||
neo-tree-nvim # File Explorer
|
|
||||||
none-ls-nvim # Formatters
|
|
||||||
numb-nvim # Peek / Jump to Lines
|
|
||||||
nvim-autopairs # Automatically Close Pairs (),[],{}
|
|
||||||
telescope-fzf-native-nvim # Faster Telescope
|
|
||||||
telescope-nvim # Fuzzy Finder
|
|
||||||
telescope-ui-select-nvim # UI
|
|
||||||
toggleterm-nvim # Terminal Helper
|
|
||||||
vim-nix # Nix Helpers
|
|
||||||
which-key-nvim # Shortcut Helper
|
|
||||||
|
|
||||||
# ------------------
|
|
||||||
# --- Theme / UI ---
|
|
||||||
# ------------------
|
|
||||||
lualine-nvim # Bottom Line
|
|
||||||
noice-nvim # UI Tweaks
|
|
||||||
# nord-nvim # Theme
|
|
||||||
melange-nvim # Theme
|
|
||||||
nvim-notify # Noice Dependency
|
|
||||||
nvim-web-devicons # Dev Icons
|
|
||||||
|
|
||||||
# ------------------
|
|
||||||
# --- Treesitter ---
|
|
||||||
# ------------------
|
|
||||||
nvim-treesitter-context
|
|
||||||
nvim-treesitter.withAllGrammars
|
|
||||||
|
|
||||||
# -------------------
|
|
||||||
# ------- DAP -------
|
|
||||||
# -------------------
|
|
||||||
nvim-dap
|
|
||||||
nvim-dap-go
|
|
||||||
nvim-dap-ui
|
|
||||||
|
|
||||||
# --------------------
|
|
||||||
# -- NONE-LS EXTRAS --
|
|
||||||
# --------------------
|
|
||||||
(
|
|
||||||
pkgs.vimUtils.buildVimPlugin {
|
|
||||||
pname = "none-ls-extras.nvim";
|
|
||||||
version = "2024-06-11";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "nvimtools";
|
|
||||||
repo = "none-ls-extras.nvim";
|
|
||||||
rev = "336e84b9e43c0effb735b08798ffac382920053b";
|
|
||||||
sha256 = "sha256-UtU4oWSRTKdEoMz3w8Pk95sROuo3LEwxSDAm169wxwk=";
|
|
||||||
};
|
|
||||||
meta.homepage = "https://github.com/nvimtools/none-ls-extras.nvim/";
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
# -------------------
|
|
||||||
# ----- Silicon -----
|
|
||||||
# -------------------
|
|
||||||
(
|
|
||||||
pkgs.vimUtils.buildVimPlugin {
|
|
||||||
pname = "silicon.lua";
|
|
||||||
version = "2022-12-03";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "mhanberg";
|
|
||||||
repo = "silicon.lua";
|
|
||||||
rev = "5ca462bee0a39b058786bc7fbeb5d16ea49f3a23";
|
|
||||||
sha256 = "0vlp645d5mmii513v72jca931miyrhkvhwb9bfzhix1199zx7vi2";
|
|
||||||
};
|
|
||||||
meta.homepage = "https://github.com/mhanberg/silicon.lua/";
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
# -------------------
|
|
||||||
# ------- LLM -------
|
|
||||||
# -------------------
|
|
||||||
(
|
|
||||||
pkgs.vimUtils.buildVimPlugin {
|
|
||||||
pname = "llm.nvim";
|
|
||||||
version = "2024-05-25";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "David-Kunz";
|
|
||||||
repo = "gen.nvim";
|
|
||||||
rev = "bd19cf584b5b82123de977b44105e855e61e5f39";
|
|
||||||
sha256 = "sha256-0AEB6im8Jz5foYzmL6KEGSAYo48g1bkFpjlCSWT6JeE=";
|
|
||||||
};
|
|
||||||
meta.homepage = "https://github.com/David-Kunz/gen.nvim/";
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
# -------------------
|
|
||||||
# ---- LLAMA.VIM ----
|
|
||||||
# -------------------
|
|
||||||
(
|
|
||||||
pkgs.vimUtils.buildVimPlugin {
|
|
||||||
pname = "llama.vim";
|
|
||||||
version = "2025-01-23";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "ggml-org";
|
|
||||||
repo = "llama.vim";
|
|
||||||
rev = "143fe910b8d47a054ed464c38d8b7c17d5354468";
|
|
||||||
sha256 = "sha256-PW0HKzhSxcZiWzpDOuy98rl/X0o2nE7tMjZjwwh0qLE=";
|
|
||||||
};
|
|
||||||
meta.homepage = "https://github.com/ggml-org/llama.vim/";
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
];
|
|
||||||
|
|
||||||
extraPackages = with pkgs; [
|
|
||||||
# Telescope Dependencies
|
|
||||||
fd
|
|
||||||
ripgrep
|
|
||||||
tree-sitter
|
|
||||||
|
|
||||||
# LSP Dependencies
|
|
||||||
go
|
|
||||||
golangci-lint
|
|
||||||
golangci-lint-langserver
|
|
||||||
gopls
|
|
||||||
lua-language-server
|
|
||||||
nil
|
|
||||||
nodePackages.eslint
|
|
||||||
nodePackages.svelte-language-server
|
|
||||||
nodePackages.typescript
|
|
||||||
nodePackages.typescript-language-server
|
|
||||||
nodePackages.vscode-langservers-extracted
|
|
||||||
pyright
|
|
||||||
eslint_d
|
|
||||||
|
|
||||||
# Formatters
|
|
||||||
luaformatter
|
|
||||||
nixpkgs-fmt
|
|
||||||
nodePackages.prettier
|
|
||||||
sqlfluff
|
|
||||||
stylua
|
|
||||||
|
|
||||||
# Silicon
|
|
||||||
silicon
|
|
||||||
];
|
|
||||||
|
|
||||||
extraConfig = ":luafile ~/.config/nvim/lua/init.lua";
|
|
||||||
};
|
|
||||||
|
|
||||||
xdg.configFile = {
|
|
||||||
# Copy Configuration
|
|
||||||
nvim = {
|
|
||||||
source = ./config;
|
|
||||||
recursive = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Generate Nix Vars
|
|
||||||
"nvim/lua/nix-vars.lua".text = ''
|
|
||||||
local nix_vars = {
|
|
||||||
gopls = "${pkgs.gopls}/bin/gopls",
|
|
||||||
luals = "${pkgs.lua-language-server}/bin/lua-language-server",
|
|
||||||
sveltels = "${pkgs.nodePackages.svelte-language-server}/bin/svelteserver",
|
|
||||||
tsls = "${pkgs.nodePackages.typescript-language-server}/bin/typescript-language-server",
|
|
||||||
golintls = "${pkgs.golangci-lint-langserver}/bin/golangci-lint-langserver",
|
|
||||||
vscls = "${pkgs.nodePackages.vscode-langservers-extracted}",
|
|
||||||
}
|
|
||||||
return nix_vars
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,35 +0,0 @@
|
|||||||
{ config, pkgs, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
cfg = config.${namespace}.services.fusuma;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.services.fusuma = {
|
|
||||||
enable = lib.mkEnableOption "Fusuma";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
services.fusuma = {
|
|
||||||
enable = true;
|
|
||||||
extraPackages = with pkgs; [ ydotool deterministic-uname uutils-coreutils-noprefix ];
|
|
||||||
settings = {
|
|
||||||
swipe = {
|
|
||||||
"3" = {
|
|
||||||
begin = {
|
|
||||||
command = "ydotool click 40";
|
|
||||||
interval = 0.00;
|
|
||||||
};
|
|
||||||
update = {
|
|
||||||
command = "ydotool mousemove -- $move_x, $move_y";
|
|
||||||
interval = 0.01;
|
|
||||||
accel = 1.00;
|
|
||||||
# accel = 1.70;
|
|
||||||
};
|
|
||||||
end = {
|
|
||||||
command = "ydotool click 80";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
{ config, lib, namespace, pkgs, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf types;
|
|
||||||
inherit (lib.${namespace}) mkOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.services.sops;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.services.sops = with types; {
|
|
||||||
enable = lib.mkEnableOption "sops";
|
|
||||||
defaultSopsFile = mkOpt path null "Default sops file.";
|
|
||||||
sshKeyPaths = mkOpt (listOf path) [ ] "SSH Key paths to use.";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
age
|
|
||||||
sops
|
|
||||||
ssh-to-age
|
|
||||||
];
|
|
||||||
|
|
||||||
sops = {
|
|
||||||
inherit (cfg) defaultSopsFile;
|
|
||||||
defaultSopsFormat = "yaml";
|
|
||||||
|
|
||||||
age = {
|
|
||||||
generateKey = true;
|
|
||||||
keyFile = "${config.home.homeDirectory}/.config/sops/age/keys.txt";
|
|
||||||
sshKeyPaths = [ "${config.home.homeDirectory}/.ssh/id_ed25519" ] ++ cfg.sshKeyPaths;
|
|
||||||
};
|
|
||||||
|
|
||||||
# TODO
|
|
||||||
# secrets = {
|
|
||||||
# nix = {
|
|
||||||
# sopsFile = lib.snowfall.fs.get-file "secrets/default.yaml";
|
|
||||||
# path = "${config.home.homeDirectory}/.config/nix/nix.conf";
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
cfg = config.${namespace}.services.ssh-agent;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.services.ssh-agent = {
|
|
||||||
enable = lib.mkEnableOption "ssh-agent service";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
services.ssh-agent = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,52 +0,0 @@
|
|||||||
{ config, lib, pkgs, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib)
|
|
||||||
types
|
|
||||||
mkIf
|
|
||||||
mkDefault
|
|
||||||
mkMerge
|
|
||||||
mkEnableOption
|
|
||||||
;
|
|
||||||
inherit (lib.${namespace}) mkOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.user;
|
|
||||||
|
|
||||||
home-directory =
|
|
||||||
if cfg.name == null then
|
|
||||||
null
|
|
||||||
else if pkgs.stdenv.hostPlatform.isDarwin then
|
|
||||||
"/Users/${cfg.name}"
|
|
||||||
else
|
|
||||||
"/home/${cfg.name}";
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.user = {
|
|
||||||
enable = mkEnableOption "Whether to configure the user account.";
|
|
||||||
email = mkOpt types.str "evan@reichard.io" "The email of the user.";
|
|
||||||
fullName = mkOpt types.str "Evan Reichard" "The full name of the user.";
|
|
||||||
home = mkOpt (types.nullOr types.str) home-directory "The user's home directory.";
|
|
||||||
name = mkOpt (types.nullOr types.str) config.snowfallorg.user.name "The user account.";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable (mkMerge [
|
|
||||||
{
|
|
||||||
assertions = [
|
|
||||||
{
|
|
||||||
assertion = cfg.name != null;
|
|
||||||
message = "${namespace}.user.name must be set";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
assertion = cfg.home != null;
|
|
||||||
message = "${namespace}.user.home must be set";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
home = {
|
|
||||||
homeDirectory = mkDefault cfg.home;
|
|
||||||
username = mkDefault cfg.name;
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
|
||||||
}
|
|
||||||
]);
|
|
||||||
}
|
|
@ -1,33 +0,0 @@
|
|||||||
{ config, lib, pkgs, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.display-managers.sddm;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.display-managers.sddm = {
|
|
||||||
enable = lib.mkEnableOption "sddm";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
catppuccin-sddm
|
|
||||||
];
|
|
||||||
|
|
||||||
services = {
|
|
||||||
displayManager = {
|
|
||||||
sddm = {
|
|
||||||
inherit (cfg) enable;
|
|
||||||
package = pkgs.kdePackages.sddm;
|
|
||||||
theme = "catppuccin-mocha";
|
|
||||||
wayland.enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.sessionVariables = {
|
|
||||||
QT_SCREEN_SCALE_FACTORS = "2";
|
|
||||||
QT_FONT_DPI = "192";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
{ config, lib, inputs, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) types optionalAttrs;
|
|
||||||
inherit (lib.${namespace}) mkOpt mkBoolOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.hardware.asahi;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
inputs.apple-silicon.nixosModules.default
|
|
||||||
];
|
|
||||||
|
|
||||||
options.${namespace}.hardware.asahi = {
|
|
||||||
enable = lib.mkEnableOption "support for asahi linux";
|
|
||||||
enableGPU = mkBoolOpt false "enable gpu driver";
|
|
||||||
firmwareDirectory = mkOpt types.path null "firmware directory";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = {
|
|
||||||
hardware.asahi = {
|
|
||||||
enable = cfg.enable;
|
|
||||||
} // optionalAttrs cfg.enable {
|
|
||||||
peripheralFirmwareDirectory = cfg.firmwareDirectory;
|
|
||||||
useExperimentalGPUDriver = cfg.enableGPU;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
{ config, lib, pkgs, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
inherit (lib.${namespace}) mkBoolOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.hardware.opengl;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.hardware.opengl = {
|
|
||||||
enable = lib.mkEnableOption "support for opengl";
|
|
||||||
enable32Bit = mkBoolOpt false "enable 32-bit";
|
|
||||||
enableIntel = mkBoolOpt false "support for intel";
|
|
||||||
enableNvidia = mkBoolOpt false "support for nvidia";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
libva-utils
|
|
||||||
vdpauinfo
|
|
||||||
] ++ lib.optionals cfg.enableNvidia [
|
|
||||||
nvtopPackages.full
|
|
||||||
] ++ lib.optionals cfg.enableIntel [
|
|
||||||
intel-gpu-tools
|
|
||||||
];
|
|
||||||
|
|
||||||
# Add Intel Arc / Nvidia Drivers
|
|
||||||
hardware.enableRedistributableFirmware = cfg.enableIntel;
|
|
||||||
hardware.graphics = {
|
|
||||||
enable = true;
|
|
||||||
enable32Bit = cfg.enable32Bit;
|
|
||||||
|
|
||||||
extraPackages = with pkgs;
|
|
||||||
lib.optionals cfg.enableIntel [
|
|
||||||
libvdpau-va-gl
|
|
||||||
intel-vaapi-driver
|
|
||||||
intel-media-driver
|
|
||||||
intel-compute-runtime
|
|
||||||
intel-ocl
|
|
||||||
] ++ lib.optionals cfg.enableNvidia [
|
|
||||||
cudatoolkit
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,83 +0,0 @@
|
|||||||
{ config, lib, pkgs, inputs, namespace, host, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) types mkIf;
|
|
||||||
inherit (lib.${namespace}) mkBoolOpt mkOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.nix;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.nix = {
|
|
||||||
enable = mkBoolOpt true "Whether or not to manage nix configuration.";
|
|
||||||
package = mkOpt types.package pkgs.nixVersions.latest "Which nix package to use.";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
nix =
|
|
||||||
let
|
|
||||||
mappedRegistry = lib.pipe inputs [
|
|
||||||
(lib.filterAttrs (_: lib.isType "flake"))
|
|
||||||
(lib.mapAttrs (_: flake: { inherit flake; }))
|
|
||||||
(x: x // {
|
|
||||||
nixpkgs.flake = if pkgs.stdenv.hostPlatform.isLinux then inputs.nixpkgs else inputs.nixpkgs-unstable;
|
|
||||||
})
|
|
||||||
(x: if pkgs.stdenv.hostPlatform.isDarwin then lib.removeAttrs x [ "nixpkgs-unstable" ] else x)
|
|
||||||
];
|
|
||||||
users = [
|
|
||||||
"root"
|
|
||||||
"@wheel"
|
|
||||||
"nix-builder"
|
|
||||||
"evanreichard"
|
|
||||||
];
|
|
||||||
in
|
|
||||||
{
|
|
||||||
inherit (cfg) package;
|
|
||||||
|
|
||||||
buildMachines = lib.optional (config.${namespace}.security.sops.enable && host != "nixos-builder") {
|
|
||||||
hostName = "10.0.50.130";
|
|
||||||
systems = [ "x86_64-linux" ];
|
|
||||||
sshUser = "evanreichard";
|
|
||||||
protocol = "ssh";
|
|
||||||
sshKey = config.sops.secrets.builder_ssh_key.path;
|
|
||||||
supportedFeatures = [
|
|
||||||
"benchmark"
|
|
||||||
"big-parallel"
|
|
||||||
"nixos-test"
|
|
||||||
"kvm"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
checkConfig = true;
|
|
||||||
distributedBuilds = true;
|
|
||||||
|
|
||||||
gc = {
|
|
||||||
automatic = true;
|
|
||||||
options = "--delete-older-than 7d";
|
|
||||||
};
|
|
||||||
|
|
||||||
optimise.automatic = true;
|
|
||||||
|
|
||||||
# Pin the registry to avoid downloading and evaluating a new nixpkgs version everytime
|
|
||||||
registry = mappedRegistry;
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
allowed-users = users;
|
|
||||||
auto-optimise-store = pkgs.stdenv.hostPlatform.isLinux;
|
|
||||||
builders-use-substitutes = true;
|
|
||||||
experimental-features = [
|
|
||||||
"nix-command"
|
|
||||||
"flakes "
|
|
||||||
];
|
|
||||||
flake-registry = "/etc/nix/registry.json";
|
|
||||||
http-connections = 50;
|
|
||||||
keep-derivations = true;
|
|
||||||
keep-going = true;
|
|
||||||
keep-outputs = true;
|
|
||||||
log-lines = 50;
|
|
||||||
sandbox = true;
|
|
||||||
trusted-users = users;
|
|
||||||
warn-dirty = false;
|
|
||||||
use-xdg-base-directories = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,28 +0,0 @@
|
|||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.programs.graphical.wms.hyprland;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.programs.graphical.wms.hyprland = {
|
|
||||||
enable = lib.mkEnableOption "Hyprland";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs = {
|
|
||||||
hyprland = {
|
|
||||||
enable = true;
|
|
||||||
withUWSM = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
reichard = {
|
|
||||||
display-managers = {
|
|
||||||
sddm = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib.${namespace}) mkOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.security.sops;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.security.sops = {
|
|
||||||
enable = lib.mkEnableOption "sops";
|
|
||||||
defaultSopsFile = mkOpt lib.types.path null "Default sops file.";
|
|
||||||
sshKeyPaths = mkOpt (with lib.types; listOf path) [
|
|
||||||
# "/etc/ssh/ssh_host_ed25519_key"
|
|
||||||
] "SSH Key paths to use.";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
sops = {
|
|
||||||
inherit (cfg) defaultSopsFile;
|
|
||||||
|
|
||||||
age = {
|
|
||||||
inherit (cfg) sshKeyPaths;
|
|
||||||
|
|
||||||
keyFile = "${config.users.users.${config.${namespace}.user.name}.home}/.config/sops/age/keys.txt";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
sops.secrets.builder_ssh_key = {
|
|
||||||
sopsFile = lib.snowfall.fs.get-file "secrets/default.yaml";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.services.avahi;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.services.avahi = {
|
|
||||||
enable = lib.mkEnableOption "Avahi";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
services.avahi = {
|
|
||||||
enable = true;
|
|
||||||
nssmdns4 = true;
|
|
||||||
openFirewall = true;
|
|
||||||
publish = {
|
|
||||||
enable = true;
|
|
||||||
addresses = true;
|
|
||||||
domain = true;
|
|
||||||
hinfo = true;
|
|
||||||
userServices = true;
|
|
||||||
workstation = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.services.cloud-init;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.services.cloud-init = {
|
|
||||||
enable = lib.mkEnableOption "Enable Cloud-Init";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
services.cloud-init = {
|
|
||||||
enable = true;
|
|
||||||
network.enable = true;
|
|
||||||
settings = {
|
|
||||||
datasource_list = [ "NoCloud" ];
|
|
||||||
preserve_hostname = false;
|
|
||||||
system_info = {
|
|
||||||
distro = "nixos";
|
|
||||||
network.renderers = [ "networkd" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
networking.hostName = lib.mkForce "";
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,57 +0,0 @@
|
|||||||
{ config, pkgs, lib, namespace, host, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) types mkIf;
|
|
||||||
inherit (lib.${namespace}) mkOpt mkBoolOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.services.openiscsi;
|
|
||||||
cloudInitEnabled = config.${namespace}.services.cloud-init.enable;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.services.openiscsi = {
|
|
||||||
enable = lib.mkEnableOption "Open iSCSI support";
|
|
||||||
name = mkOpt types.str "iqn.2025.reichard.io:${host}" "iSCSI name";
|
|
||||||
symlink = mkBoolOpt false "Create a symlink to the iSCSI binaries";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
boot.kernelModules = [ "iscsi_tcp" "libiscsi" "scsi_transport_iscsi" ];
|
|
||||||
|
|
||||||
services.openiscsi = {
|
|
||||||
enable = true;
|
|
||||||
name = cfg.name;
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
openiscsi
|
|
||||||
];
|
|
||||||
|
|
||||||
# Predominately used for RKE2 & Democratic CSI
|
|
||||||
system.activationScripts.iscsi-symlink = mkIf cfg.symlink ''
|
|
||||||
mkdir -p /usr/bin
|
|
||||||
ln -sf ${pkgs.openiscsi}/bin/iscsiadm /usr/bin/iscsiadm
|
|
||||||
ln -sf ${pkgs.openiscsi}/bin/iscsid /usr/bin/iscsid
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Cloud Init Compatibility
|
|
||||||
environment.etc."iscsi/initiatorname.iscsi".enable = mkIf cloudInitEnabled false;
|
|
||||||
systemd.services.iscsi-initiator-setup = mkIf cloudInitEnabled {
|
|
||||||
description = "Setup iSCSI Initiator Name";
|
|
||||||
requires = [ "cloud-final.service" ];
|
|
||||||
before = [ "iscsid.service" ];
|
|
||||||
after = [ "cloud-final.service" ];
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
|
|
||||||
serviceConfig = {
|
|
||||||
Type = "oneshot";
|
|
||||||
RemainAfterExit = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
path = [ pkgs.hostname pkgs.util-linux ];
|
|
||||||
script = ''
|
|
||||||
mkdir -p /run/iscsi
|
|
||||||
echo "InitiatorName=iqn.2025.org.nixos:$(hostname)" > /run/iscsi/initiatorname.iscsi
|
|
||||||
mount --bind /run/iscsi/initiatorname.iscsi /etc/iscsi/initiatorname.iscsi
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,78 +0,0 @@
|
|||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib)
|
|
||||||
types
|
|
||||||
mkDefault
|
|
||||||
mkIf
|
|
||||||
;
|
|
||||||
inherit (lib.${namespace}) mkOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.services.openssh;
|
|
||||||
|
|
||||||
authorizedKeys = [
|
|
||||||
# evanreichard@lin-va-mbp-personal
|
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILJJoyXQOv9cAjGUHrUcvsW7vY9W0PmuPMQSI9AMZvNY"
|
|
||||||
];
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.services.openssh = with types; {
|
|
||||||
enable = lib.mkEnableOption "OpenSSH support";
|
|
||||||
authorizedKeys = mkOpt (listOf str) authorizedKeys "The public keys to apply.";
|
|
||||||
extraConfig = mkOpt str "" "Extra configuration to apply.";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
services.openssh = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
hostKeys = mkDefault [
|
|
||||||
{
|
|
||||||
bits = 4096;
|
|
||||||
path = "/etc/ssh/ssh_host_ed25519_key";
|
|
||||||
type = "ed25519";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
openFirewall = true;
|
|
||||||
ports = [ 22 ];
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
AuthenticationMethods = "publickey";
|
|
||||||
ChallengeResponseAuthentication = "no";
|
|
||||||
PasswordAuthentication = false;
|
|
||||||
PermitRootLogin = "prohibit-password";
|
|
||||||
PubkeyAuthentication = "yes";
|
|
||||||
StreamLocalBindUnlink = "yes";
|
|
||||||
UseDns = false;
|
|
||||||
UsePAM = true;
|
|
||||||
X11Forwarding = false;
|
|
||||||
|
|
||||||
KexAlgorithms = [
|
|
||||||
"curve25519-sha256"
|
|
||||||
"curve25519-sha256@libssh.org"
|
|
||||||
"diffie-hellman-group16-sha512"
|
|
||||||
"diffie-hellman-group18-sha512"
|
|
||||||
"diffie-hellman-group-exchange-sha256"
|
|
||||||
"sntrup761x25519-sha512@openssh.com"
|
|
||||||
];
|
|
||||||
|
|
||||||
Macs = [
|
|
||||||
"hmac-sha2-512-etm@openssh.com"
|
|
||||||
"hmac-sha2-256-etm@openssh.com"
|
|
||||||
"umac-128-etm@openssh.com"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
startWhenNeeded = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.ssh = {
|
|
||||||
startAgent = lib.mkDefault true;
|
|
||||||
inherit (cfg) extraConfig;
|
|
||||||
};
|
|
||||||
|
|
||||||
reichard = {
|
|
||||||
user.extraOptions.openssh.authorizedKeys.keys = cfg.authorizedKeys;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,53 +0,0 @@
|
|||||||
{ config, pkgs, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) types mkIf;
|
|
||||||
inherit (lib.${namespace}) mkOpt mkBoolOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.services.rke2;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.services.rke2 = with types; {
|
|
||||||
enable = lib.mkEnableOption "Enable RKE2";
|
|
||||||
disable = mkOpt (listOf str) [ ] "Disable services";
|
|
||||||
openFirewall = mkBoolOpt true "Open firewall";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
services.rke2 = {
|
|
||||||
enable = true;
|
|
||||||
disable = cfg.disable;
|
|
||||||
};
|
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [
|
|
||||||
# RKE2 Ports - https://docs.rke2.io/install/requirements#networking
|
|
||||||
6443 # Kubernetes API
|
|
||||||
9345 # RKE2 supervisor API
|
|
||||||
2379 # etcd Client Port
|
|
||||||
2380 # etcd Peer Port
|
|
||||||
2381 # etcd Metrics Port
|
|
||||||
10250 # kubelet metrics
|
|
||||||
9099 # Canal CNI health checks
|
|
||||||
|
|
||||||
# MetalLB
|
|
||||||
7946 # memberlist
|
|
||||||
];
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [ nfs-utils ];
|
|
||||||
|
|
||||||
networking.firewall.allowedUDPPorts = mkIf cfg.openFirewall [
|
|
||||||
# RKE2 Ports - https://docs.rke2.io/install/requirements#networking
|
|
||||||
8472 # Canal CNI with VXLAN
|
|
||||||
# 51820 # Canal CNI with WireGuard IPv4 (if using encryption)
|
|
||||||
# 51821 # Canal CNI with WireGuard IPv6 (if using encryption)
|
|
||||||
|
|
||||||
# MetalLB
|
|
||||||
7946 # memberlist
|
|
||||||
];
|
|
||||||
|
|
||||||
# Cloud Init
|
|
||||||
systemd.services.rke2-server = mkIf config.${namespace}.services.cloud-init.enable {
|
|
||||||
after = [ "cloud-final.service" ];
|
|
||||||
requires = [ "cloud-final.service" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.services.ydotool;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.services.ydotool = {
|
|
||||||
enable = lib.mkEnableOption "ydotool";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
reichard.user.extraGroups = [ "input" ];
|
|
||||||
programs.ydotool = {
|
|
||||||
enable = true;
|
|
||||||
group = "input";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,52 +0,0 @@
|
|||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf mkDefault;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.system.boot;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.system.boot = {
|
|
||||||
enable = lib.mkEnableOption "Enable Boot";
|
|
||||||
xenGuest = lib.mkEnableOption "Enable Xen Guest";
|
|
||||||
showNotch = lib.mkEnableOption "Show macOS Notch";
|
|
||||||
silentBoot = lib.mkEnableOption "Silent Boot";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
services.xe-guest-utilities.enable = mkIf cfg.xenGuest true;
|
|
||||||
|
|
||||||
boot = {
|
|
||||||
kernelParams = lib.optionals cfg.silentBoot [
|
|
||||||
"quiet"
|
|
||||||
"loglevel=3"
|
|
||||||
"udev.log_level=3"
|
|
||||||
"rd.udev.log_level=3"
|
|
||||||
"systemd.show_status=auto"
|
|
||||||
"rd.systemd.show_status=auto"
|
|
||||||
"vt.global_cursor_default=0"
|
|
||||||
] ++ lib.optionals cfg.showNotch [
|
|
||||||
"apple_dcp.show_notch=1"
|
|
||||||
];
|
|
||||||
|
|
||||||
loader = {
|
|
||||||
efi = {
|
|
||||||
canTouchEfiVariables = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd-boot = {
|
|
||||||
enable = true;
|
|
||||||
configurationLimit = 20;
|
|
||||||
editor = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
timeout = mkDefault 1;
|
|
||||||
};
|
|
||||||
|
|
||||||
initrd = mkIf cfg.xenGuest {
|
|
||||||
kernelModules = [ "xen_netfront" "xen_blkfront" ];
|
|
||||||
supportedFilesystems = [ "xenfs" ];
|
|
||||||
};
|
|
||||||
kernelModules = mkIf cfg.xenGuest [ "xen_netfront" "xen_blkfront" "xenfs" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,71 +0,0 @@
|
|||||||
{ config, lib, pkgs, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) types mkIf mkDefault mkOption mkEnableOption;
|
|
||||||
inherit (lib.${namespace}) mkBoolOpt enabled;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.system.networking;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.system.networking = {
|
|
||||||
enable = mkEnableOption "Enable Networking";
|
|
||||||
enableIWD = mkEnableOption "Enable IWD";
|
|
||||||
useDHCP = mkBoolOpt true "Use DHCP";
|
|
||||||
useNetworkd = mkBoolOpt false "Use networkd";
|
|
||||||
useStatic = mkOption {
|
|
||||||
type = types.nullOr (types.submodule {
|
|
||||||
options = {
|
|
||||||
interface = mkOption {
|
|
||||||
type = lib.types.str;
|
|
||||||
description = "Network interface name";
|
|
||||||
example = "enp0s3";
|
|
||||||
};
|
|
||||||
address = mkOption {
|
|
||||||
type = types.str;
|
|
||||||
description = "Static IP address";
|
|
||||||
example = "10.0.20.200";
|
|
||||||
};
|
|
||||||
defaultGateway = mkOption {
|
|
||||||
type = types.str;
|
|
||||||
description = "Default gateway IP";
|
|
||||||
example = "10.0.20.254";
|
|
||||||
};
|
|
||||||
nameservers = mkOption {
|
|
||||||
type = types.listOf types.str;
|
|
||||||
description = "List of DNS servers";
|
|
||||||
example = [ "10.0.20.254" "8.8.8.8" ];
|
|
||||||
default = [ "8.8.8.8" "8.8.4.4" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
});
|
|
||||||
default = null;
|
|
||||||
description = "Static Network Configuration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
mtr
|
|
||||||
tcpdump
|
|
||||||
traceroute
|
|
||||||
];
|
|
||||||
|
|
||||||
reichard.user.extraGroups = [ "network" ];
|
|
||||||
|
|
||||||
networking = {
|
|
||||||
firewall = enabled;
|
|
||||||
useDHCP = mkIf (cfg.useStatic == null) (mkDefault cfg.useDHCP);
|
|
||||||
useNetworkd = cfg.useNetworkd;
|
|
||||||
} // (lib.optionalAttrs (cfg.enableIWD) {
|
|
||||||
wireless.iwd = {
|
|
||||||
enable = true;
|
|
||||||
settings.General.EnableNetworkConfiguration = true;
|
|
||||||
};
|
|
||||||
}) // (lib.optionalAttrs (cfg.useStatic != null) {
|
|
||||||
inherit (cfg.useStatic) defaultGateway nameservers;
|
|
||||||
interfaces.${cfg.useStatic.interface}.ipv4.addresses = [{
|
|
||||||
inherit (cfg.useStatic) address;
|
|
||||||
prefixLength = 24;
|
|
||||||
}];
|
|
||||||
});
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,26 +0,0 @@
|
|||||||
{ config, lib, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.system.networking;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
reichard.user.extraGroups = [ "networkmanager" ];
|
|
||||||
|
|
||||||
networking.networkmanager = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
connectionConfig = {
|
|
||||||
"connection.mdns" = "2";
|
|
||||||
};
|
|
||||||
|
|
||||||
# unmanaged = [
|
|
||||||
# "interface-name:br-*"
|
|
||||||
# "interface-name:rndis*"
|
|
||||||
# ]
|
|
||||||
# ++ lib.optionals config.${namespace}.virtualisation.podman.enable [ "interface-name:docker*" ]
|
|
||||||
# ++ lib.optionals config.${namespace}.virtualisation.kvm.enable [ "interface-name:virbr*" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,30 +0,0 @@
|
|||||||
{ config, lib, pkgs, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) types;
|
|
||||||
inherit (lib.${namespace}) mkOpt;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.user;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.user = with types; {
|
|
||||||
email = mkOpt str "evan@reichard.io" "The email of the user.";
|
|
||||||
extraGroups = mkOpt (listOf str) [ ] "Groups for the user to be assigned.";
|
|
||||||
extraOptions = mkOpt attrs { } "Extra options passed to <option>users.users.<name></option>.";
|
|
||||||
fullName = mkOpt str "Evan Reichard" "The full name of the user.";
|
|
||||||
initialPassword = mkOpt str "changeMe2025!" "The initial password to use when the user is first created.";
|
|
||||||
name = mkOpt str "evanreichard" "The name to use for the user account.";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = {
|
|
||||||
users.users.${cfg.name} = {
|
|
||||||
inherit (cfg) name initialPassword;
|
|
||||||
|
|
||||||
group = "users";
|
|
||||||
home = "/home/${cfg.name}";
|
|
||||||
extraGroups = [ "wheel" ] ++ cfg.extraGroups;
|
|
||||||
isNormalUser = true;
|
|
||||||
shell = pkgs.bashInteractive;
|
|
||||||
uid = 1000;
|
|
||||||
} // cfg.extraOptions;
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,43 +0,0 @@
|
|||||||
{ config, lib, pkgs, namespace, ... }:
|
|
||||||
let
|
|
||||||
inherit (lib) mkIf;
|
|
||||||
|
|
||||||
cfg = config.${namespace}.virtualisation.podman;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.${namespace}.virtualisation.podman = {
|
|
||||||
enable = lib.mkEnableOption "podman";
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
podman-compose
|
|
||||||
podman-desktop
|
|
||||||
];
|
|
||||||
|
|
||||||
reichard = {
|
|
||||||
user = {
|
|
||||||
extraGroups = [
|
|
||||||
"docker"
|
|
||||||
"podman"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
virtualisation = {
|
|
||||||
podman = {
|
|
||||||
inherit (cfg) enable;
|
|
||||||
|
|
||||||
autoPrune = {
|
|
||||||
enable = true;
|
|
||||||
flags = [ "--all" ];
|
|
||||||
dates = "weekly";
|
|
||||||
};
|
|
||||||
|
|
||||||
defaultNetwork.settings.dns_enabled = true;
|
|
||||||
dockerCompat = true;
|
|
||||||
dockerSocket.enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user