Previously the home-manager and nixos sections of my config had been separated into different branches on the same repository. This commit merges the home-manager modules into the directory, and convert the "systems" that used to be on each branch into hosts and users. The goal of this change is to make it easier to see the hosts and users paradigm, as well as limit the number of locations the git repository is installed. Additionally, having different branches tracking different changes was silly for a git repository.
33 lines
643 B
Nix
33 lines
643 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware.nix
|
|
];
|
|
networking.hostName = "onizuka";
|
|
nixpkgs.config.allowUnfree = true;
|
|
system.stateVersion = "23.05";
|
|
|
|
nvidia.enable = true;
|
|
pipewire.enable = true;
|
|
polkit.enable = true;
|
|
tablet.enable = true;
|
|
|
|
user.name = "pan";
|
|
user.timezone = "America/Los_Angeles";
|
|
system.doAutoUpgrade = true;
|
|
|
|
tuigreet.enable = true;
|
|
hyprland.enable = true;
|
|
|
|
librewolf.enable = true;
|
|
fish.enable = true;
|
|
fish.setDefault = true;
|
|
syncthing.enable = true;
|
|
|
|
steam.enable = true;
|
|
steam.gamemode.enable = true;
|
|
aagl.enable = true;
|
|
aagl.honkai-rail = true;
|
|
input-remapper.enable = true;
|
|
}
|