nixos-config/nixos/hosts/marisa-a7s/default.nix

31 lines
495 B
Nix
Raw Permalink Normal View History

2024-11-28 01:14:34 +08:00
{
suites,
profiles,
mylib,
...
}:
{
imports =
suites.workstation
++ [
profiles.users.rebmit
]
++ (mylib.path.scanPaths ./. "default.nix");
home-manager.users.rebmit =
{ suites, profiles, ... }:
{
imports = suites.desktop-workstation ++ [
profiles.syncthing
];
programs.niri.settings = {
outputs."eDP-1".scale = 1.2;
};
};
services.power-profiles-daemon.enable = true;
2024-12-24 22:14:33 +08:00
system.stateVersion = "24.11";
2024-11-28 01:14:34 +08:00
}