| 12345678910111213141516171819202122 |
- { config, pkgs, ... }:
- let
- users = import ../../config/users.nix;
- in
- {
- imports = [
- ../../home/flavors/desktop/sway
- ../../home/flavors/application/workstation
- ../../home/flavors/application/development
- ];
- news.display = "silent";
- #nixpkgs.config.allowUnfree = true;
- home = {
- username = users.default;
- homeDirectory = "/home/${users.default}";
- stateVersion = "25.11";
- };
- }
|