Evie Litherland-Smith
0889818512
Move commonModule into system/default.nix Keep most essential parts (user definition, home-manager init) in flake.nix but move rest to system/default.nix Remove some tui expressions from home and add all to home/default.nix, will always want those so always use Disable gamescope session unless gamescope.nix imported Move various home.package definitions to environment.systemPackage in system/ expressions, located based on appropriate use Move wallpapers directory due to restructure, no other changes to it
28 lines
826 B
Nix
28 lines
826 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
programs = {
|
|
git.userEmail = "evie.litherland-smith@ukaea.uk";
|
|
firefox.profiles.default.settings."browser.startup.homepage" =
|
|
"https://nucleus.ukaea.uk";
|
|
};
|
|
programs.mbsync.groups.inboxes.ukaea = [ "INBOX" ];
|
|
accounts = {
|
|
email.accounts = {
|
|
proton.primary = false;
|
|
ukaea.primary = true;
|
|
};
|
|
calendar.accounts.nextcloud.vdirsyncer.enable = false; # TEMP until fixed
|
|
};
|
|
services.vdirsyncer.enable = lib.mkForce false; # TEMP until fixed
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
|
misc {
|
|
disable_hyprland_logo = true
|
|
disable_splash_rendering = true
|
|
}
|
|
|
|
monitor=desc:Iiyama North America PLB2403WS 0574281251316,preferred,0x185,1
|
|
monitor=desc:Dell Inc. DELL U2417H 5K9YD872FY1L,preferred,1920x0,1,transform,1
|
|
'';
|
|
}
|