| 1234567891011121314151617181920212223 |
- let
- users = import ./users.nix;
- in
- {
- nixstation = {
- hostname = "nixstation";
- dir = "nixstation";
- arch = "x86_64-linux";
- user = users.default;
- };
- dellaptop = {
- hostname = "dellaptop";
- dir = "dellaptop";
- arch = "x86_64-linux";
- user = users.default;
- };
- ideapad = {
- hostname = "ideapad";
- dir = "ideapad";
- arch = "x86_64-linux";
- user = users.default;
- };
- }
|