This commit is contained in:
Peder Bergebakken Sundt 2023-10-15 03:38:14 +02:00
parent 2174164a0c
commit 2560364ad5
5 changed files with 8 additions and 18 deletions

View File

@ -128,8 +128,8 @@
}); });
element-desktop = pkgs.element-desktop.overrideAttrs (old: { element-desktop = pkgs.element-desktop.overrideAttrs (old: {
desktopItem = old.desktopItem.override (old: { desktopItem = old.desktopItem.override (old: {
#exec = "element-desktop --disable-gpu --in-process-gpu %u"; exec = "element-desktop --disable-gpu --in-process-gpu %u";
exec = "env NIXOS_OZONE_WL=1 element-desktop %u"; #exec = "env NIXOS_OZONE_WL=1 element-desktop %u";
}); });
}); });
}); });

View File

@ -48,6 +48,7 @@ let
"base64" "base64"
"zipfile" "zipfile"
]; ];
pdoc-modules = [ pdoc-modules = [
{name="more-itertools"; literal="more_itertools";} {name="more-itertools"; literal="more_itertools";}
"altair" "altair"
@ -166,7 +167,6 @@ let
toName = x: if builtins.isString x then x else x.name; toName = x: if builtins.isString x then x else x.name;
toLiteral = x: if builtins.isString x then x else x.literal; toLiteral = x: if builtins.isString x then x else x.literal;
mkPdoc = use-pdoc3: isBuiltin: pkg: let mkPdoc = use-pdoc3: isBuiltin: pkg: let
description = if isBuiltin description = if isBuiltin
then "builtin" then "builtin"

View File

@ -1,3 +1,4 @@
* [ ] tailscale/wireguard
* [ ] mime-types - filetype -> program register * [ ] mime-types - filetype -> program register
* [ ] .mod * [ ] .mod
* [ ] don't use pulsar for text/*, i'd rather use bat or micro * [ ] don't use pulsar for text/*, i'd rather use bat or micro
@ -9,18 +10,5 @@
* [ ] kukkee * [ ] kukkee
* [ ] rallly * [ ] rallly
* [ ] Rocketchat - A self-hosted discord/slack alternative * [ ] Rocketchat - A self-hosted discord/slack alternative
* [ ] upterm / tmate - Secure terminal-session sharing
```
services.uptermd = {
enable = false;
openFirewall = true;
#listenAddress # default is "[::]";
#port = 2222; # default is 2222, uses ssh
#extraFlags
#hostKey = null;
};
```
* [ ] a DAW profile * [ ] a DAW profile
* https://libreddit.noximilien.pbsds.net/r/linuxaudio/comments/wntpyd/linux_plugins_thread_2022/ * https://libreddit.noximilien.pbsds.net/r/linuxaudio/comments/wntpyd/linux_plugins_thread_2022/

View File

@ -46,8 +46,10 @@
"wheel" "wheel"
"nixbld" "nixbld"
# TODO: NAS stuff # TODO: NAS stuff
] ++ lib.optionals config.virtualisation.docker.enable [
"docker"
];
] ++ lib.optional config.virtualisation.docker.enable "docker";
initialHashedPassword = "$6$yNgxTHcP1UYkNwuZ$1sBehnKgPjVnDe0tSV8kyfynWpfjDzuohZX6SoTrMnYFa3/aiMOtI6JppYevl.M6qYhBIT0XBvL6TqSSFWn8B/"; initialHashedPassword = "$6$yNgxTHcP1UYkNwuZ$1sBehnKgPjVnDe0tSV8kyfynWpfjDzuohZX6SoTrMnYFa3/aiMOtI6JppYevl.M6qYhBIT0XBvL6TqSSFWn8B/";
# TODO: fetch from github? # TODO: fetch from github?

View File

@ -116,7 +116,7 @@
#TODO: vpn #TODO: vpn
# TODO: wayland # TODO: wayland
clip = "xclip -sel clip -t text/plain -rmlastnl -i"; clip = "( if command -v wl-copy >/dev/null; then wl-copy --trim-newline --type text/plain; else xclip -sel clip -t text/plain -rmlastnl -i; fi )";
# TODO: ps1? # TODO: ps1?
pwd-fqdn = ''echo "$(whoami)@$(hostname -f):$(printf "%q" "$(realpath .)/")"''; pwd-fqdn = ''echo "$(whoami)@$(hostname -f):$(printf "%q" "$(realpath .)/")"'';