Compare commits

..

No commits in common. "8ca6499da163d6662fa930f55b5b738cea91978f" and "6a3473813de9655420e2aff02fe9992636472f3f" have entirely different histories.

2 changed files with 27 additions and 22 deletions

View file

@ -4,37 +4,37 @@ Hey, you. This is my nixos configurations.
---
| Machine | Users | OS |
| :-------: | :---: | :---: |
| Tytonidae | david | NixOS |
| Akun | david | NixOS |
| Cape | alice | NixOS |
| Machine | Users |
| --------- | ----- |
| Tytonidae | david |
| Akun | david |
| Cape | alice |
---
- david@Tytonidae
| Specialisation | DE / WM | Shell | Editor | Terminal | Launcher | Browser | DM |
| :------------: | :-----: | :---------: | :---------: | :------: | :------: | :-----: | :--------------: |
| default | niri | fish + bash | helix + zed | ghostty | fuzzel | firefox | greetd + regreet |
| kde | kde | fish + bash | helix + zed | ghostty | kde run | firefox | sddm |
| Specialisation | DE / WM | Shell | Editor | Terminal | Launcher | Browser | DM |
| -------------- | ------- | ----------- | ----------- | -------- | -------- | ------- | ---------------- |
| default | niri | fish + bash | helix + zed | ghostty | fuzzel | firefox | greetd + regreet |
| kde | kde | fish + bash | helix + zed | ghostty | kde run | firefox | sddm |
- david@Akun
| Specialisation | DE / WM | Shell | Editor | Terminal | Launcher | Browser | DM |
| :------------: | :-----: | :---------: | :---------: | :------: | :------: | :-----: | :--------------: |
| default | niri | fish + bash | helix + zed | ghostty | fuzzel | firefox | greetd + regreet |
| Specialisation | DE / WM | Shell | Editor | Terminal | Launcher | Browser | DM |
| -------------- | ------- | ----------- | ----------- | -------- | -------- | ------- | ---------------- |
| default | niri | fish + bash | helix + zed | ghostty | fuzzel | firefox | greetd + regreet |
- alice@Cape
| Specialisation | DE / WM | Shell | Editor | Terminal | Launcher | Browser | DM |
| :------------: | :-----: | :---------: | :----: | :------: | :------: | :-----: | :-: |
| default | - | fish + bash | helix | - | - | - | - |
| Specialisation | DE / WM | Shell | Editor | Terminal | Launcher | Browser | DM |
| -------------- | ------- | ----------- | ------ | -------- | -------- | ------- | -- |
| default | - | fish + bash | helix | - | - | - | - |
## FlakE OutputS and StructurE
| `outputs` field | description | source |
| :---------------------------------------- | :-------------------------------------------------------------------------- | :--------------------------------------- |
| ----------------------------------------- | --------------------------------------------------------------------------- | ---------------------------------------- |
| `packages` | packages imported or wrapped from elsewhere | ./pkgs |
| `overlays.modifications` | the overlays modify `<nixpkgs>` | ./overlays/modifications |
| `overlays.additions` | the ovelrays add packages in `<nixpkgs>` | ./overlays/additions |

View file

@ -63,12 +63,17 @@
};
in {
flake = {
homeConfigurations = lib.foldr (a: b: a // b) {} (
[
# Hostname
]
|> map (hostName: mkHomeConfig {inherit hostName;})
);
homeConfigurations =
lib.foldr (a: b: a // b) {} (
map (hostName: mkHomeConfig {inherit hostName;}) [
"Tytonidae"
"Akun"
]
)
// mkHomeConfig {
hostName = "Cape";
unixName = "alice";
};
inherit homeModules;
};
}