Compare commits

..

No commits in common. "ea0d7caf4f16f2621a7c91333baafdf6d7189a0a" and "7019c43d85a38bffca6bcd72d55e565a2721ae68" have entirely different histories.

4 changed files with 22 additions and 32 deletions

11
flake.lock generated
View file

@ -339,16 +339,15 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1712872911, "lastModified": 1712484920,
"narHash": "sha256-gwYrKMXuUBf5acvTzH7+lXeBbBZYUUEgcLBugHXimuc=", "narHash": "sha256-wNwv12U/QYYgZanycZ32A41cEDa2zPwYuMKK6AJYNJk=",
"owner": "toast003", "owner": "pjones",
"repo": "plasma-manager", "repo": "plasma-manager",
"rev": "8a3ac8690d6f546ec9185e1f5ddbb1f76d63b6b1", "rev": "4b127a5ede004f5c6d7c41938c2986b599dc0bf3",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "toast003", "owner": "pjones",
"ref": "libinput",
"repo": "plasma-manager", "repo": "plasma-manager",
"type": "github" "type": "github"
} }

View file

@ -51,7 +51,7 @@
}; };
plasma-manager = { plasma-manager = {
url = "github:toast003/plasma-manager/libinput"; url = "github:pjones/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs-unstable-raw"; inputs.nixpkgs.follows = "nixpkgs-unstable-raw";
inputs.home-manager.follows = "home-manager-unstable"; inputs.home-manager.follows = "home-manager-unstable";
}; };

View file

@ -110,8 +110,7 @@
environment.sessionVariables = { environment.sessionVariables = {
STEAM_FORCE_DESKTOPUI_SCALING = "2"; STEAM_FORCE_DESKTOPUI_SCALING = "2";
}; };
home-manager.sharedModules = [ home-manager.users.toast = {
{
# Steam's hidpi support is bugged so it needds to be hardcoded # Steam's hidpi support is bugged so it needds to be hardcoded
# This bypasses that # This bypasses that
xdg.desktopEntries = { xdg.desktopEntries = {
@ -123,9 +122,7 @@
comment = "Application for managing and playing games on Steam"; comment = "Application for managing and playing games on Steam";
}; };
}; };
programs.plasma.input.keyboard.layouts = lib.mkForce [ "us" ]; };
}
];
# Enable sound. # Enable sound.
# sound.enable = true; # sound.enable = true;

View file

@ -125,16 +125,6 @@ in {
left = ["on-all-desktops" "keep-above-windows"]; left = ["on-all-desktops" "keep-above-windows"];
right = ["minimize" "maximize" "close"]; right = ["minimize" "maximize" "close"];
}; };
virtualDesktops = {
rows = 1;
number = 2;
};
};
input = {
keyboard = {
layouts = ["es"];
numlockOnStartup = "off";
};
}; };
panels = [ panels = [
{ {
@ -166,6 +156,10 @@ in {
configFile = { configFile = {
"kwinrc" = { "kwinrc" = {
"org.kde.kdecoration2"."BorderSize".value = "None"; "org.kde.kdecoration2"."BorderSize".value = "None";
"Desktops" = {
"Number".value = 2;
"Rows".value = 1;
};
"TabBox"."LayoutName".value = "thumbnail_grid"; "TabBox"."LayoutName".value = "thumbnail_grid";
}; };
"kdeglobals"."General"."AccentColor".value = null; "kdeglobals"."General"."AccentColor".value = null;