Refactor modules style

This commit is contained in:
Julia Lange 2024-04-07 17:08:48 -07:00
parent ed2a7f94cf
commit cc95386f1a
44 changed files with 455 additions and 297 deletions

View file

@ -1,11 +1,28 @@
{ config, pkgs, lib, ... }:
{
networking.hostName = "jibril";
imports = [
./hardware.nix
../../modules/network/bluetooth
../../modules/network/networking
];
networking.hostName = "jibril";
nix.package = pkgs.nixUnstable;
nixpkgs.config.allowUnfree = true;
system.stateVersion = "23.05";
config = {
pipewire.enable = true;
polkit.enable = true;
bluetooth.enable = true;
wireless.enable = true;
user.name = "pan";
user.timezone = "America/Los_Angeles";
tuigreet.enable = true;
hyprland.enable = true;
librewolf.enable = true;
xonsh.enable = true;
syncthing.enable = true;
};
}