Compare commits
No commits in common. "62b059ba0e6f8fbc9686e87beb1abb657c1c13a8" and "70fca2d19b0bf7a0c1163b6f581c41bbbd4e47fc" have entirely different histories.
62b059ba0e
...
70fca2d19b
6 changed files with 16 additions and 34 deletions
|
|
@ -1,3 +0,0 @@
|
|||
" Use Tiger filetype for programs and header files
|
||||
au BufNewFile,BufRead *.tig setfiletype tiger
|
||||
au BufNewFile,BufRead *.tih setfiletype tiger
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.my.home.wm.cursor;
|
||||
|
||||
cfg_x = config.my.home.x;
|
||||
cfg_gtk = config.my.home.gtk;
|
||||
in
|
||||
{
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.pointerCursor = {
|
||||
package = pkgs.ambroisie.vimix-cursors;
|
||||
name = "Vimix-cursors";
|
||||
|
||||
x11 = {
|
||||
inherit (cfg_x) enable;
|
||||
};
|
||||
|
||||
gtk = {
|
||||
inherit (cfg_gtk) enable;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -10,7 +10,6 @@ let
|
|||
in
|
||||
{
|
||||
imports = [
|
||||
./cursor
|
||||
./dunst
|
||||
./i3
|
||||
./i3bar
|
||||
|
|
@ -26,10 +25,6 @@ in
|
|||
description = "Which window manager to use for home session";
|
||||
};
|
||||
|
||||
cursor = {
|
||||
enable = mkRelatedOption "dunst configuration" [ "i3" ];
|
||||
};
|
||||
|
||||
dunst = {
|
||||
enable = mkRelatedOption "dunst configuration" [ "i3" ];
|
||||
};
|
||||
|
|
|
|||
12
home/x/cursor/default.nix
Normal file
12
home/x/cursor/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.my.home.x;
|
||||
in
|
||||
{
|
||||
config = lib.mkIf cfg.enable {
|
||||
xsession.pointerCursor = {
|
||||
package = pkgs.ambroisie.vimix-cursors;
|
||||
name = "Vimix-cursors";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -4,6 +4,7 @@ let
|
|||
in
|
||||
{
|
||||
imports = [
|
||||
./cursor
|
||||
./keyboard
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
buildGoModule rec {
|
||||
pname = "drone-scp";
|
||||
version = "1.6.3";
|
||||
version = "1.6.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "appleboy";
|
||||
repo = "drone-scp";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-ELjPqoRR4O6gmc/PgthQuSXuSTQNzBZoAUT80zVVbV0=";
|
||||
sha256 = "sha256-PNy1HA2qW4RY/VRHhuj/tIrdTuB7COr0Cuzurku+DZw=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-/c103hTJ/Qdz2KTkdl/ACvAaSSTKcl1DQY3+Us6OxaI=";
|
||||
vendorSha256 = "sha256-7Aro6g3Tka0Cbi9LpqvKpQXlbxnHQWsMOkkNpENKh0U=";
|
||||
|
||||
doCheck = false; # Needs a specific user...
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue