Compare commits
No commits in common. "ecc54c5cf9ea4d8b1b380a8180fd2f1b01dd3fe0" and "15a732865754c88cd71bfa35d81e65c70157ccd1" have entirely different histories.
ecc54c5cf9
...
15a7328657
|
@ -35,9 +35,8 @@
|
|||
base16,
|
||||
tt-schemes,
|
||||
...
|
||||
} @ inputs: let
|
||||
}: let
|
||||
defaultSpecialArgs = {system ? "x86_64-linux", ...}: {
|
||||
inherit inputs;
|
||||
iosevkaCustom = {
|
||||
packages = iosevka-custom.outputs.packages.${system};
|
||||
names = iosevka-custom.outputs.names;
|
||||
|
@ -49,7 +48,7 @@
|
|||
names = iosevka-custom.outputs.names;
|
||||
};
|
||||
in {
|
||||
inherit inputs iosevkaCustom;
|
||||
inherit iosevkaCustom;
|
||||
inherit (plasma-manager.packages.${system}) rc2nix;
|
||||
accentColourName = "base0E";
|
||||
fonts = with iosevkaCustom; rec {
|
||||
|
@ -107,6 +106,7 @@
|
|||
backupFileExtension = "backup";
|
||||
users.${username} = {
|
||||
imports = [
|
||||
plasma-manager.homeManagerModules.plasma-manager
|
||||
base16.homeManagerModule
|
||||
{scheme = "${tt-schemes}/base16/one-light.yaml";}
|
||||
./home/default.nix
|
||||
|
|
|
@ -5,11 +5,6 @@
|
|||
"url": "https://abetterrouteplanner.com/",
|
||||
"tags": ["Travel"]
|
||||
},
|
||||
{
|
||||
"name": "Krystal Hosting",
|
||||
"url": "https://krystal.io",
|
||||
"tags": ["Server", "Hosting"]
|
||||
},
|
||||
{
|
||||
"name": "Forgejo",
|
||||
"url": "https://git.xenia.me.uk",
|
||||
|
|
|
@ -2,14 +2,12 @@
|
|||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
inputs,
|
||||
fonts,
|
||||
rc2nix,
|
||||
accentColourName,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.plasma-manager.homeManagerModules.plasma-manager
|
||||
../default.nix
|
||||
./konsole.nix
|
||||
];
|
||||
|
@ -165,9 +163,6 @@
|
|||
"Switch Window Left" = "Meta+H";
|
||||
"Switch Window Right" = "Meta+L";
|
||||
"Switch Window Up" = "Meta+K";
|
||||
"Invert" = "Meta+Ctrl+I";
|
||||
"InvertWindow" = "Meta+Ctrl+U";
|
||||
"Invert Screen Colors" = [];
|
||||
};
|
||||
"services/org.kde.konsole.desktop"."_launch" = [];
|
||||
"services/org.kde.krunner.desktop"."_launch" = ["Meta+Space" "Search" "Alt+F2"];
|
||||
|
@ -188,19 +183,9 @@
|
|||
|
||||
configFile = {
|
||||
baloofilerc."Basic Settings"."Indexing-Enabled" = false;
|
||||
bluedevilglobalrc.Global.launchState.value = "disable";
|
||||
plasmanotifyrc.Notifications.NormalAlwaysOnTop = true;
|
||||
kcminputrc.Keyboard.NumLock = 1;
|
||||
plasmanotifyrc = {
|
||||
Notifications = {
|
||||
NormalAlwaysOnTop = true;
|
||||
};
|
||||
};
|
||||
krunnerrc = {
|
||||
General = {
|
||||
ActivateWhenTypingOnDesktop = false;
|
||||
FreeFloating = true;
|
||||
};
|
||||
};
|
||||
krunnerrc.General.FreeFloating = true;
|
||||
kscreenlockerrc = {
|
||||
Daemon.Timeout = 15;
|
||||
Greeter.WallpaperPlugin = "org.kde.potd";
|
||||
|
@ -242,32 +227,11 @@
|
|||
inactiveForeground = "112,125,138";
|
||||
};
|
||||
};
|
||||
breezerc = {
|
||||
Common = {
|
||||
OutlineClassButton = true;
|
||||
ShadowSize = "ShadowVeryLarge";
|
||||
ShadowStrength = "128";
|
||||
};
|
||||
Style = {
|
||||
MenuOpacity = "80";
|
||||
};
|
||||
};
|
||||
dolphinrc = {
|
||||
ContentDisplay = {
|
||||
UsePermissionsFormat = "CombinedFormat";
|
||||
};
|
||||
General = {
|
||||
BrowseThroughArchives = true;
|
||||
OpenNewTabAfterLastTab = true;
|
||||
RememberOpenedTabs = false;
|
||||
};
|
||||
};
|
||||
kwinrc = {
|
||||
Plugins = {
|
||||
frozenappEnabled = false;
|
||||
mouseclickEnabled = true;
|
||||
shakecursorEnabled = false;
|
||||
invertEnabled = true;
|
||||
};
|
||||
Windows = {
|
||||
FocusPolicy = "FocusFollowsMouse";
|
||||
|
@ -284,9 +248,9 @@
|
|||
# blur to all windows
|
||||
Inactive = 100;
|
||||
MoveResize = 100;
|
||||
Dialogs = 50;
|
||||
ComboboxPopups = 50;
|
||||
Menus = 50;
|
||||
Dialogs = 100;
|
||||
ComboboxPopups = 100;
|
||||
Menus = 100;
|
||||
};
|
||||
"org.kde.kdecoration2" = {
|
||||
BorderSize = "None";
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
};
|
||||
systemPackages = with pkgs; [
|
||||
libsecret
|
||||
libnotify
|
||||
xdg-utils
|
||||
hunspell
|
||||
hunspellDicts.en_GB-large
|
||||
|
|
Loading…
Reference in a new issue