2023-05-28 02:00:10 +02:00
|
|
|
{
|
2023-01-10 02:38:06 +01:00
|
|
|
imports = [
|
|
|
|
../common/global
|
|
|
|
../common/users/adrielus.nix
|
|
|
|
|
|
|
|
../common/optional/pipewire.nix
|
2023-07-22 16:21:29 +02:00
|
|
|
../common/optional/greetd.nix
|
2023-07-30 01:22:25 +02:00
|
|
|
# ../common/optional/xmonad
|
|
|
|
# ../common/optional/lightdm.nix
|
2023-04-25 15:35:09 +02:00
|
|
|
../common/optional/steam.nix
|
2023-02-19 22:47:42 +01:00
|
|
|
../common/optional/slambda.nix
|
2023-04-27 01:08:20 +02:00
|
|
|
../common/optional/xdg-portal.nix
|
2023-05-24 03:17:09 +02:00
|
|
|
../common/optional/hyprland.nix
|
2023-01-10 02:38:06 +01:00
|
|
|
|
2023-07-18 16:30:04 +02:00
|
|
|
./services/syncthing.nix
|
2023-01-10 02:38:06 +01:00
|
|
|
./hardware-configuration.nix
|
|
|
|
./boot.nix
|
|
|
|
];
|
|
|
|
|
2023-07-18 16:30:04 +02:00
|
|
|
# Machine ids
|
2023-01-10 02:38:06 +01:00
|
|
|
networking.hostName = "tethys";
|
2023-07-18 15:16:57 +02:00
|
|
|
environment.etc.machine-id.text = "08357db3540c4cd2b76d4bb7f825ec88";
|
|
|
|
|
2023-01-10 02:38:06 +01:00
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
|
|
system.stateVersion = "22.11";
|
2023-04-17 10:53:41 +02:00
|
|
|
|
2023-05-28 00:41:22 +02:00
|
|
|
# {{{ A few ad-hoc hardware settings
|
|
|
|
hardware.opengl.enable = true;
|
2023-05-28 05:24:36 +02:00
|
|
|
hardware.opentabletdriver.enable = true;
|
2023-05-28 00:41:22 +02:00
|
|
|
# }}}
|
|
|
|
# {{{ A few ad-hoc programs
|
|
|
|
programs.kdeconnect.enable = true;
|
|
|
|
programs.extra-container.enable = true;
|
|
|
|
# }}}
|
2023-05-28 05:24:36 +02:00
|
|
|
# {{{ Ad-hoc stylix targets
|
|
|
|
# TODO: include this on all gui hosts
|
2023-07-18 16:30:04 +02:00
|
|
|
# TODO: is this useful outside of home-manager?
|
2023-05-28 05:24:36 +02:00
|
|
|
stylix.targets.gtk.enable = true;
|
|
|
|
# }}}
|
2023-07-30 01:22:25 +02:00
|
|
|
# {{{ Some ad-hoc site blocking
|
|
|
|
networking.extraHosts = ''
|
|
|
|
127.0.0.1 twitter.com
|
|
|
|
'';
|
2023-08-04 21:53:54 +02:00
|
|
|
# 127.0.0.1 www.reddit.com
|
2023-07-30 01:22:25 +02:00
|
|
|
# }}}
|
2023-01-10 02:38:06 +01:00
|
|
|
}
|