Compare commits
No commits in common. "1056568b6c79dff9f6a961ea13ba76e1cc113b00" and "bb86604348d6737b915e8649bf7d597ff193ae15" have entirely different histories.
1056568b6c
...
bb86604348
|
@ -34,10 +34,6 @@ let
|
|||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.sharedModules = [
|
||||
materusCfg.configInputs.plasma-manager.homeManagerModules.plasma-manager
|
||||
materusCfg.configInputs.sops-nix.homeManagerModules.sops
|
||||
];
|
||||
home-manager.users = (builtins.foldl' (a: b: a // b) { } (builtins.map
|
||||
(user: {
|
||||
${user} = ({ ... }:
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
{ pkgs, materusArg, lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
./plasma.nix
|
||||
];
|
||||
home.stateVersion = "23.05";
|
||||
home.homeDirectory = "/home/materus";
|
||||
|
||||
|
@ -84,6 +81,7 @@
|
|||
};
|
||||
|
||||
home.packages = [
|
||||
pkgs.papirus-icon-theme
|
||||
materusArg.pkgs.ffmpeg_7-amf-full
|
||||
(materusArg.pkgs.polymc-qt5.wrap { extraJDKs = [ pkgs.graalvm-ce ]; extraLibs = [ ]; })
|
||||
pkgs.git-crypt
|
||||
|
|
|
@ -1,124 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.papirus-icon-theme
|
||||
(pkgs.nerdfonts.override { fonts = [ "Hack" ]; })
|
||||
];
|
||||
programs.konsole = {
|
||||
enable = true;
|
||||
profiles = {
|
||||
materus = {
|
||||
colorScheme = "Breeze";
|
||||
font.name = "Hack Nerd Font";
|
||||
extraConfig = {
|
||||
Scrolling = {
|
||||
HistoryMode = 2;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
extraConfig = {
|
||||
KonsoleWindow = {
|
||||
RememberWindowSize = "false";
|
||||
};
|
||||
MainWindow = {
|
||||
MenuBar = "Enabled";
|
||||
};
|
||||
|
||||
"Desktop Entry" = {
|
||||
DefaultProfile = "materus.profile";
|
||||
};
|
||||
};
|
||||
};
|
||||
programs.plasma = {
|
||||
enable = true;
|
||||
overrideConfig = false;
|
||||
|
||||
|
||||
|
||||
workspace = {
|
||||
lookAndFeel = "org.kde.breezedark.desktop";
|
||||
iconTheme = "Papirus-Dark";
|
||||
};
|
||||
|
||||
shortcuts = {
|
||||
"kwin"."Grid View" = "Meta+Alt+Tab";
|
||||
"kwin"."Overview" = "Meta+Tab";
|
||||
};
|
||||
spectacle.shortcuts = {
|
||||
captureActiveWindow = "Meta+Print";
|
||||
captureCurrentMonitor = "Print";
|
||||
captureEntireDesktop = "Shift+Print";
|
||||
captureRectangularRegion = "Meta+S";
|
||||
launchWithoutCapturing = "Meta+Shift+S";
|
||||
launch = "Meta+Alt+S";
|
||||
};
|
||||
|
||||
kwin = {
|
||||
effects = {
|
||||
wobblyWindows.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
input = {
|
||||
keyboard = {
|
||||
options = [ "caps:none" ];
|
||||
};
|
||||
};
|
||||
kscreenlocker = {
|
||||
autoLock = false;
|
||||
};
|
||||
|
||||
panels = [
|
||||
{
|
||||
location = "left";
|
||||
screen = 0;
|
||||
widgets = [
|
||||
{
|
||||
name = "org.kde.plasma.kickerdash";
|
||||
config = {
|
||||
General = {
|
||||
icon = "nix-snowflake-white";
|
||||
alphaSort = true;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
"org.kde.plasma.icontasks"
|
||||
"org.kde.plasma.marginsseparator"
|
||||
"org.kde.plasma.systemtray"
|
||||
{
|
||||
name = "org.kde.plasma.digitalclock";
|
||||
config = {
|
||||
Appearance = {
|
||||
showDate = "false";
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
];
|
||||
configFile = {
|
||||
"kwinrc"."Effect-overview"."BorderActivate" = 9;
|
||||
|
||||
"kcminputrc"."Libinput/9610/46/SINOWEALTH Wired Gaming Mouse"."PointerAccelerationProfile" = 1;
|
||||
"kcminputrc"."Libinput/9610/47/SINOWEALTH 2.4G Wireless Receiver"."PointerAccelerationProfile" = 1;
|
||||
|
||||
"spectaclerc"."ImageSave"."imageFilenameTemplate" = "<yyyy>-<MM>-<dd>.<hh><mm><ss>-<t>.materusPC.<#>";
|
||||
"spectaclerc"."ImageSave"."preferredImageFormat" = "WEBP";
|
||||
"spectaclerc"."ImageSave"."translatedScreenshotsFolder" = "Zrzuty ekranu";
|
||||
"spectaclerc"."VideoSave"."translatedScreencastsFolder" = "Nagranie ekranu";
|
||||
|
||||
"dolphinrc"."General"."RememberOpenedTabs" = false;
|
||||
|
||||
"kwalletrc"."Wallet"."Enabled" = false;
|
||||
|
||||
};
|
||||
dataFile = {
|
||||
"dolphin/view_properties/global/.directory"."Settings"."HiddenFilesShown" = true;
|
||||
};
|
||||
|
||||
};
|
||||
}
|
|
@ -82,7 +82,7 @@ in
|
|||
};
|
||||
|
||||
plasma-manager = {
|
||||
from = { type = "indirect"; id = "plasma-manager"; };
|
||||
from = { type = "indirect"; id = "git-agecrypt"; };
|
||||
flake = materusCfg.configInputs.plasma-manager;
|
||||
};
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@ let
|
|||
(materusFlake.selfPath + "/configurations/shared/home/${username}")
|
||||
(materusFlake.selfPath + "/configurations/host/${host}/home/${username}")
|
||||
profiles.homeProfile
|
||||
materusFlake.nixosConfigurations.${host}.materusCfg.configInputs.sops-nix.homeManagerModules.sops
|
||||
];
|
||||
};
|
||||
}]
|
||||
|
@ -48,7 +49,6 @@ let
|
|||
./${username}
|
||||
profiles.homeProfile
|
||||
materusCfg.configInputs.sops-nix.homeManagerModules.sops
|
||||
materusCfg.configInputs.plasma-manager.homeManagerModules.plasma-manager
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue