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
77 lines
1.8 KiB
Nix
77 lines
1.8 KiB
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
|
|
services.kanshi.profiles = {
|
|
undocked = {
|
|
outputs = [
|
|
{
|
|
criteria = "eDP-1";
|
|
mode = "1920x1080";
|
|
position = "0,0";
|
|
scale = 1.0;
|
|
status = "enable";
|
|
}
|
|
{
|
|
criteria = "*";
|
|
status = "enable";
|
|
}
|
|
];
|
|
};
|
|
work = {
|
|
outputs = [
|
|
{
|
|
criteria = "Iiyama North America PLB2403WS 0574281251316";
|
|
position = "0,0";
|
|
status = "enable";
|
|
}
|
|
{
|
|
criteria = "eDP-1";
|
|
status = "disable";
|
|
}
|
|
{
|
|
criteria = "*";
|
|
status = "enable";
|
|
}
|
|
];
|
|
};
|
|
home = {
|
|
outputs = [
|
|
{
|
|
criteria = "Acer Technologies ED270R TJMEE0043W01";
|
|
position = "0,0";
|
|
status = "enable";
|
|
}
|
|
{
|
|
criteria = "eDP-1";
|
|
status = "disable";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
xdg.configFile."hypr/extra.conf".text = ''
|
|
misc {
|
|
disable_hyprland_logo = true
|
|
disable_splash_rendering = true
|
|
}
|
|
|
|
monitor=eDP-1,preferred,auto,1
|
|
monitor=desc:Iiyama North America PLB2403WS 0574281251316,preferred,0x185,1
|
|
monitor=desc:Dell Inc. DELL U2417H 5K9YD872FY1L,preferred,1920x0,1,transform,1
|
|
monitor=desc:Acer Technologies ED270R TJMEE0043W01,highrr,0x0,1
|
|
'';
|
|
}
|