2023-05-17 17:10:18 +01:00
|
|
|
{pkgs, ...}: {
|
2023-03-31 13:14:35 +01:00
|
|
|
imports = [
|
2023-06-17 10:27:02 +01:00
|
|
|
../../common.nix
|
|
|
|
../../hardware/audio.nix
|
|
|
|
../../hardware/bluetooth.nix
|
|
|
|
../../locales/en_GB.nix
|
2023-06-18 11:31:54 +01:00
|
|
|
../../desktop/hyprland.nix
|
2023-06-17 10:27:02 +01:00
|
|
|
../../services/syncthing/J0162.nix
|
2023-03-31 13:14:35 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "J0162"; # Define your hostname.
|
2023-06-17 10:27:02 +01:00
|
|
|
system.autoUpgrade = {
|
|
|
|
enable = false;
|
|
|
|
allowReboot = false;
|
|
|
|
};
|
2023-06-13 10:05:40 +01:00
|
|
|
environment.etc."ppp/options".text = ''
|
|
|
|
ipcp-accept-remote
|
|
|
|
'';
|
2023-03-31 13:14:35 +01:00
|
|
|
users.users.elitherl = {
|
|
|
|
isNormalUser = true;
|
|
|
|
description = "Evie Litherland-Smith";
|
2023-05-17 17:10:18 +01:00
|
|
|
extraGroups = ["networkmanager" "wheel"];
|
2023-03-31 13:14:35 +01:00
|
|
|
shell = pkgs.fish;
|
|
|
|
};
|
2023-06-17 10:27:02 +01:00
|
|
|
home-manager.users.elitherl = import ./elitherl.nix;
|
2023-06-19 05:58:42 +01:00
|
|
|
|
|
|
|
# services.greetd = {
|
|
|
|
# enable = true;
|
|
|
|
# settings = rec {
|
|
|
|
# initial_session = {
|
|
|
|
# command = "${pkgs.hyprland}/bin/Hyprland";
|
|
|
|
# user = "elitherl";
|
|
|
|
# };
|
|
|
|
# default_session = initial_session;
|
|
|
|
# };
|
|
|
|
# };
|
2023-03-31 13:14:35 +01:00
|
|
|
}
|