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",
|
||||
"revCount": 5,
|
||||
"type": "git",
|
||||
"url": "ssh://git@git.datarift.nl/erwin/git-fs-monitor.git"
|
||||
"url": "https://git.datarift.nl/erwin/git-fs-monitor.git"
|
||||
},
|
||||
"original": {
|
||||
"ref": "main",
|
||||
"type": "git",
|
||||
"url": "ssh://git@git.datarift.nl/erwin/git-fs-monitor.git"
|
||||
"url": "https://git.datarift.nl/erwin/git-fs-monitor.git"
|
||||
}
|
||||
},
|
||||
"gitignore": {
|
||||
|
@ -952,12 +952,12 @@
|
|||
"rev": "223fb72217b97ed13248713b5825b234023eed83",
|
||||
"revCount": 13,
|
||||
"type": "git",
|
||||
"url": "https://git@git.datarift.nl/erwin/sunshine.git"
|
||||
"url": "https://git.datarift.nl/erwin/sunshine.git"
|
||||
},
|
||||
"original": {
|
||||
"ref": "main",
|
||||
"type": "git",
|
||||
"url": "https://git@git.datarift.nl/erwin/sunshine.git"
|
||||
"url": "https://git.datarift.nl/erwin/sunshine.git"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
|
|
|
@ -129,7 +129,7 @@
|
|||
};
|
||||
|
||||
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 = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
flake-parts.follows = "flake-parts";
|
||||
|
@ -137,7 +137,7 @@
|
|||
};
|
||||
|
||||
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 = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
flake-parts.follows = "flake-parts";
|
||||
|
|
|
@ -100,6 +100,13 @@ in
|
|||
oauthAuthURL = "/login/oauth/authorize";
|
||||
oauthTokenURL = "/login/oauth/access_token";
|
||||
};
|
||||
|
||||
"http://repohost.bedum.horus.nu" = {
|
||||
oauthClientId = "b00b00f53f073f4b38f7c38b1b2a944bb5069d411552a9968f1fca1d3e60395d";
|
||||
oauthScopes = "read_repository write_repository";
|
||||
oauthAuthURL = "/oauth/authorize";
|
||||
oauthTokenURL = "/oauth/token";
|
||||
};
|
||||
};
|
||||
init = {
|
||||
defaultBranch = "main";
|
||||
|
|
|
@ -67,9 +67,9 @@
|
|||
};
|
||||
input = {
|
||||
"1241:662:USB-HID_Keyboard" = {
|
||||
xkb_layout = "us";
|
||||
xkb_variant = "";
|
||||
xkb_options = "lv3:ralt_switch,eurosign:5,caps:backspace,ctrl:nocaps";
|
||||
xkb_layout = "us,us";
|
||||
xkb_variant = "colemak,";
|
||||
xkb_options = "lv3:ralt_switch,eurosign:5,caps:backspace,ctrl:nocaps,grp:sclk_toggle,grp_led:scroll";
|
||||
xkb_numlock = "enabled";
|
||||
};
|
||||
"1133:49257:Logitech_USB_Laser_Mouse" = {
|
||||
|
@ -318,6 +318,7 @@
|
|||
programs = {
|
||||
sway = {
|
||||
enable = true;
|
||||
package = pkgs.swayfx;
|
||||
wrapperFeatures = {
|
||||
gtk = true;
|
||||
base = true;
|
||||
|
|
|
@ -65,7 +65,7 @@ in
|
|||
restart = true;
|
||||
settings = {
|
||||
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;
|
||||
sway = {
|
||||
enable = true;
|
||||
package = pkgs.swayfx;
|
||||
wayvnc = true;
|
||||
lock-wallpaper = ../../wallpapers/river-3840.png;
|
||||
output = {
|
||||
|
|
Loading…
Reference in a new issue