wow
Some checks failed
CI / check (push) Has been cancelled
CI / ida (push) Has been cancelled
CI / cpt (push) Has been cancelled
CI / build-nixos (ena) (push) Has been cancelled
CI / build-nixos (hako) (push) Has been cancelled
CI / build-nixos (kazusa) (push) Has been cancelled
CI / build-nixos (mizuki) (push) Has been cancelled
Some checks failed
CI / check (push) Has been cancelled
CI / ida (push) Has been cancelled
CI / cpt (push) Has been cancelled
CI / build-nixos (ena) (push) Has been cancelled
CI / build-nixos (hako) (push) Has been cancelled
CI / build-nixos (kazusa) (push) Has been cancelled
CI / build-nixos (mizuki) (push) Has been cancelled
This commit is contained in:
commit
bbac123a8d
144 changed files with 7059 additions and 0 deletions
38
modules/home/plasma.nix
Normal file
38
modules/home/plasma.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{ inputs, ... }:
|
||||
let
|
||||
assets = "${inputs.self}/assets";
|
||||
genericFonts = {
|
||||
family = "Pretendard JP";
|
||||
pointSize = 10;
|
||||
};
|
||||
in
|
||||
{
|
||||
home.file.".local/share/color-schemes/Kawa.colors".source = "${assets}/Kawa.colors";
|
||||
home.file.".config/autostart/1password.desktop".source = "${assets}/1password.desktop";
|
||||
|
||||
programs.plasma = {
|
||||
enable = true;
|
||||
|
||||
workspace = {
|
||||
clickItemTo = "select";
|
||||
enableMiddleClickPaste = false;
|
||||
colorScheme = "Kawa";
|
||||
};
|
||||
|
||||
fonts = {
|
||||
fixedWidth = {
|
||||
family = "NanumGothicCoding";
|
||||
pointSize = 10;
|
||||
};
|
||||
general = genericFonts;
|
||||
toolbar = genericFonts;
|
||||
menu = genericFonts;
|
||||
windowTitle = genericFonts;
|
||||
small = genericFonts // {
|
||||
pointSize = 8;
|
||||
};
|
||||
};
|
||||
|
||||
session.sessionRestore.restoreOpenApplicationsOnLogin = "startWithEmptySession";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue