mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:43:55 -05:00
Aly Raffauf
a844e2ff68
* hosts: mv common.nix -> common/default.nix * hosts/common: move wifi settings to wifi.nix * hosts/common: add locale.nix, nix.nix, samba.nix, and secrets.nix * hosts/common: move network and wifi settings to network.nix * hosts/common: org fixes
12 lines
170 B
Nix
12 lines
170 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./locale.nix
|
|
./network.nix
|
|
./nix.nix
|
|
./samba.nix
|
|
./secrets.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [inxi];
|
|
}
|