Compare commits

..

No commits in common. "abb4fe5712d8b7238152ed74925073269ed0c912" and "0d7022d7c1f6c0b0c64529bcba8f0572971ab316" have entirely different histories.

3 changed files with 20 additions and 19 deletions

30
flake.lock generated
View file

@ -372,11 +372,11 @@
},
"nixpkgs_3": {
"locked": {
"lastModified": 1754563854,
"narHash": "sha256-YzNTExe3kMY9lYs23mZR7jsVHe5TWnpwNrsPOpFs/b8=",
"lastModified": 1754292888,
"narHash": "sha256-1ziydHSiDuSnaiPzCQh1mRFBsM2d2yRX9I+5OPGEmIE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e728d7ae4bb6394bbd19eec52b7358526a44c414",
"rev": "ce01daebf8489ba97bd1609d185ea276efdeb121",
"type": "github"
},
"original": {
@ -388,11 +388,11 @@
},
"nixpkgs_4": {
"locked": {
"lastModified": 1754498491,
"narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=",
"lastModified": 1754214453,
"narHash": "sha256-Q/I2xJn/j1wpkGhWkQnm20nShYnG7TI99foDBpXm1SY=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "c2ae88e026f9525daf89587f3cbee584b92b6134",
"rev": "5b09dc45f24cf32316283e62aec81ffee3c3e376",
"type": "github"
},
"original": {
@ -408,11 +408,11 @@
"nixpkgs": "nixpkgs_4"
},
"locked": {
"lastModified": 1754684884,
"narHash": "sha256-GH+UMIOJj7u/bW55dOOpD8HpVpc9WfU61iweM2nM68A=",
"lastModified": 1754537826,
"narHash": "sha256-5aNGYEe4nf4IkFw2JN2v3jpcqLhRwCY0rlVhGtOYcV4=",
"owner": "nix-community",
"repo": "NUR",
"rev": "a7f9761c9dd71359cd9a6529078302a83e6deaac",
"rev": "0d75abff8343adaa20cd89b79e1f58d334101534",
"type": "github"
},
"original": {
@ -587,11 +587,11 @@
},
"unstable": {
"locked": {
"lastModified": 1754498491,
"narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=",
"lastModified": 1754214453,
"narHash": "sha256-Q/I2xJn/j1wpkGhWkQnm20nShYnG7TI99foDBpXm1SY=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "c2ae88e026f9525daf89587f3cbee584b92b6134",
"rev": "5b09dc45f24cf32316283e62aec81ffee3c3e376",
"type": "github"
},
"original": {
@ -628,11 +628,11 @@
},
"vpsadminos": {
"locked": {
"lastModified": 1754655349,
"narHash": "sha256-Vuc6jQNHsXhzJGusRG+K9fcI5aEnW9ZQRK22dlM0e2A=",
"lastModified": 1754243274,
"narHash": "sha256-gVTM1eIYzHx/Z/2WVhhf3Eov3JuARF5fuIrWjvc73wo=",
"owner": "vpsfreecz",
"repo": "vpsadminos",
"rev": "94f162b0a1194115a289b2f1e0f9d13b200d6d0e",
"rev": "483e04c5556e7a42a0dcd176caab7ad450244515",
"type": "github"
},
"original": {

View file

@ -15,6 +15,7 @@ in {
home.sessionVariables = {
"BEMENU_BACKEND" = "wayland";
"BEMENU_RENDERER" = "bemenu-wlroots";
};
services = {
@ -145,7 +146,7 @@ in {
"${mod}+l" = "exec ${getExe pkgs.gtklock} -d";
"${mod}+Return" = "exec ${lib.getExe pkgs.kitty} ${lib.getExe pkgs.tmux}";
"${mod}+Shift+s" = "exec ${grimshot} copy area";
"${mod}+Shift+a" = "exec ${grimshot} copy output";
"${mod}+Shift+a" = "exec ${grimshot} copy active";
"${mod}+Tab" = "focus right";
"${mod}+Shift+Tab" = "focus left";
"${mod}+Shift+w" = "move workspace to output right";

View file

@ -24,7 +24,7 @@ in {
style = ''
/* Main lockscreen window */
window {
background-color: black;
background-color: rgba(20, 20, 20, 0.9); /* dark, slightly translucent */
color: #eaeaea;
font-family: "JetBrains Mono", monospace;
font-size: 14px;
@ -32,7 +32,7 @@ in {
/* Container for clock + prompt */
#main-box {
background: black;
background: transparent;
border: none;
border-radius: 0;
padding: 0;
@ -56,7 +56,7 @@ in {
/* Password entry */
entry {
background-color: black;
background-color: rgba(0, 0, 0, 0.5);
color: #ffffff;
border: none;
border-radius: 0;