Compare commits
2 commits
6a3473813d
...
8ca6499da1
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ca6499da1 | |||
| 517ff4223d |
2 changed files with 22 additions and 27 deletions
32
README.md
32
README.md
|
|
@ -4,37 +4,37 @@ Hey, you. This is my nixos configurations.
|
|||
|
||||
---
|
||||
|
||||
| Machine | Users |
|
||||
| --------- | ----- |
|
||||
| Tytonidae | david |
|
||||
| Akun | david |
|
||||
| Cape | alice |
|
||||
| Machine | Users | OS |
|
||||
| :-------: | :---: | :---: |
|
||||
| Tytonidae | david | NixOS |
|
||||
| Akun | david | NixOS |
|
||||
| Cape | alice | NixOS |
|
||||
|
||||
---
|
||||
|
||||
- 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 |
|
||||
|
|
|
|||
|
|
@ -63,17 +63,12 @@
|
|||
};
|
||||
in {
|
||||
flake = {
|
||||
homeConfigurations =
|
||||
lib.foldr (a: b: a // b) {} (
|
||||
map (hostName: mkHomeConfig {inherit hostName;}) [
|
||||
"Tytonidae"
|
||||
"Akun"
|
||||
]
|
||||
)
|
||||
// mkHomeConfig {
|
||||
hostName = "Cape";
|
||||
unixName = "alice";
|
||||
};
|
||||
homeConfigurations = lib.foldr (a: b: a // b) {} (
|
||||
[
|
||||
# Hostname
|
||||
]
|
||||
|> map (hostName: mkHomeConfig {inherit hostName;})
|
||||
);
|
||||
inherit homeModules;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue