Compare commits
3 commits
02ba6aaf29
...
a304c7eb0e
Author | SHA1 | Date | |
---|---|---|---|
a304c7eb0e | |||
a6cb43ea6f | |||
4582ac1acc |
6 changed files with 19 additions and 10 deletions
|
@ -453,12 +453,12 @@
|
||||||
"rev": "5807cf59b93d937b3804e7b73e30221337c598ad",
|
"rev": "5807cf59b93d937b3804e7b73e30221337c598ad",
|
||||||
"revCount": 5,
|
"revCount": 5,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "ssh://git@git.datarift.nl/erwin/git-fs-monitor.git"
|
"url": "https://git.datarift.nl/erwin/git-fs-monitor.git"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"ref": "main",
|
"ref": "main",
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "ssh://git@git.datarift.nl/erwin/git-fs-monitor.git"
|
"url": "https://git.datarift.nl/erwin/git-fs-monitor.git"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"gitignore": {
|
"gitignore": {
|
||||||
|
@ -952,12 +952,12 @@
|
||||||
"rev": "223fb72217b97ed13248713b5825b234023eed83",
|
"rev": "223fb72217b97ed13248713b5825b234023eed83",
|
||||||
"revCount": 13,
|
"revCount": 13,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git@git.datarift.nl/erwin/sunshine.git"
|
"url": "https://git.datarift.nl/erwin/sunshine.git"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"ref": "main",
|
"ref": "main",
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git@git.datarift.nl/erwin/sunshine.git"
|
"url": "https://git.datarift.nl/erwin/sunshine.git"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"systems": {
|
"systems": {
|
||||||
|
|
|
@ -129,7 +129,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
sunshine = {
|
sunshine = {
|
||||||
url = "git+https://git@git.datarift.nl/erwin/sunshine.git?ref=main";
|
url = "git+https://git.datarift.nl/erwin/sunshine.git?ref=main";
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.follows = "nixpkgs";
|
nixpkgs.follows = "nixpkgs";
|
||||||
flake-parts.follows = "flake-parts";
|
flake-parts.follows = "flake-parts";
|
||||||
|
@ -137,7 +137,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
git-fs-monitor = {
|
git-fs-monitor = {
|
||||||
url = "git+ssh://git@git.datarift.nl/erwin/git-fs-monitor.git?ref=main";
|
url = "git+https://git.datarift.nl/erwin/git-fs-monitor.git?ref=main";
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.follows = "nixpkgs";
|
nixpkgs.follows = "nixpkgs";
|
||||||
flake-parts.follows = "flake-parts";
|
flake-parts.follows = "flake-parts";
|
||||||
|
|
|
@ -100,6 +100,13 @@ in
|
||||||
oauthAuthURL = "/login/oauth/authorize";
|
oauthAuthURL = "/login/oauth/authorize";
|
||||||
oauthTokenURL = "/login/oauth/access_token";
|
oauthTokenURL = "/login/oauth/access_token";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"http://repohost.bedum.horus.nu" = {
|
||||||
|
oauthClientId = "b00b00f53f073f4b38f7c38b1b2a944bb5069d411552a9968f1fca1d3e60395d";
|
||||||
|
oauthScopes = "read_repository write_repository";
|
||||||
|
oauthAuthURL = "/oauth/authorize";
|
||||||
|
oauthTokenURL = "/oauth/token";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
init = {
|
init = {
|
||||||
defaultBranch = "main";
|
defaultBranch = "main";
|
||||||
|
|
|
@ -67,9 +67,9 @@
|
||||||
};
|
};
|
||||||
input = {
|
input = {
|
||||||
"1241:662:USB-HID_Keyboard" = {
|
"1241:662:USB-HID_Keyboard" = {
|
||||||
xkb_layout = "us";
|
xkb_layout = "us,us";
|
||||||
xkb_variant = "";
|
xkb_variant = "colemak,";
|
||||||
xkb_options = "lv3:ralt_switch,eurosign:5,caps:backspace,ctrl:nocaps";
|
xkb_options = "lv3:ralt_switch,eurosign:5,caps:backspace,ctrl:nocaps,grp:sclk_toggle,grp_led:scroll";
|
||||||
xkb_numlock = "enabled";
|
xkb_numlock = "enabled";
|
||||||
};
|
};
|
||||||
"1133:49257:Logitech_USB_Laser_Mouse" = {
|
"1133:49257:Logitech_USB_Laser_Mouse" = {
|
||||||
|
@ -318,6 +318,7 @@
|
||||||
programs = {
|
programs = {
|
||||||
sway = {
|
sway = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.swayfx;
|
||||||
wrapperFeatures = {
|
wrapperFeatures = {
|
||||||
gtk = true;
|
gtk = true;
|
||||||
base = true;
|
base = true;
|
||||||
|
|
|
@ -65,7 +65,7 @@ in
|
||||||
restart = true;
|
restart = true;
|
||||||
settings = {
|
settings = {
|
||||||
default_session = {
|
default_session = {
|
||||||
command = "${pkgs.sway}/bin/sway --unsupported-gpu --config /etc/greetd/sway-config";
|
command = "${config.programs.sway.package}/bin/sway --unsupported-gpu --config /etc/greetd/sway-config";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -145,6 +145,7 @@ in
|
||||||
starship.enable = true;
|
starship.enable = true;
|
||||||
sway = {
|
sway = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.swayfx;
|
||||||
wayvnc = true;
|
wayvnc = true;
|
||||||
lock-wallpaper = ../../wallpapers/river-3840.png;
|
lock-wallpaper = ../../wallpapers/river-3840.png;
|
||||||
output = {
|
output = {
|
||||||
|
|
Loading…
Reference in a new issue