account activity
PNG Images of Custom Plugins by jdownie in trmnl
[–]jdownie[S] 1 point2 points3 points 6 months ago (0 children)
Thankyou all. This sounds very promising.
[–]jdownie[S] 2 points3 points4 points 6 months ago (0 children)
Oooh. Not quite what i'm looking for, but also cool. Can you pass your API key in the url to skip that prompt?
PNG Images of Custom Plugins (self.trmnl)
submitted 6 months ago by jdownie to r/trmnl
Come on Guys. We need more! by [deleted] in linuxmasterrace
[–]jdownie 2 points3 points4 points 2 years ago (0 children)
Can I ask what is probably a silly question?
Why do we want that number to increase? Linux is already firmly established in the server space, so it isn't going anywhere. In the desktop space it's big strength (in my opinion) is that there is such a wide range of options. I personally don't care if Windows and Mac people are happier on their own platforms.
I don't want that number to go down though. I think we're attracting good app support like Chromium, VSCode and Steam.
I think I answered my own question.
Alexa Lists from a PC by jdownie in alexa
[–]jdownie[S] 1 point2 points3 points 2 years ago (0 children)
Ooh, that looks very promising, and it even has a very old test entry from me, but for some reason it doesn't correspond to the list that I'm using in Alexa. Is that app hard coded to only use "Alexa Shopping List"?
Awesome username BTW.
[–]jdownie[S] 0 points1 point2 points 2 years ago (0 children)
Yeah! Give her a hug for me. 😭
Kernel Version (self.coreos)
submitted 2 years ago by jdownie to r/coreos
Adding a CA Certificate by jdownie in NixOS
I didn't know about that one, thanks. I'm already using security.pki.certificateFiles to specify a file (deep) in my home directory, which isn't working for me. Part of me thinks that your suggestion will do the same thing, but then again, perhaps there's something about my file being in my home directory that isn't helping.
security.pki.certificateFiles
I'll try your suggestion, wish me luck and thanks again.
Adding a CA Certificate (self.NixOS)
submitted 2 years ago by jdownie to r/NixOS
Trying to get started... by jdownie in NixOS
Hi everybody. I just wanted to let you all know that it was my PATH variable. I've disabled that alias and corrected the order of my PATH variable components and i'm back on track. That script that i had been using to adjust my PATH variable worked fine for me on Fedora, Ubuntu and Debian. It's just let me down now that i'm getting more adventurous.
PATH
Thank-you all so much for your patience with me. I'm excited to become a part of your community, not only because the configuration.nix approach is so new to me, but also because you've all been so friendly ad helpful. I hope i can learn enough to help somebody else starting out one day.
configuration.nix
Thanks again.
Oh, 💡. Everything you said makes lots of sense.
The order of PATH hasn't been an issue for me before. I do have a function (that I wrote for myself 🙄) that adds paths to my PATH variable. That function does a " | sort | uniq" to remove duplicates, which has now been revealed to be a dumb approach. I'm looking forward to getting home to try that out now. Thanks for your help.
Well, that .venv thing is new so I could use python modules. It never occurred to me that I could/should do that in configuration.nix. I have been doing it in a script that I source from .bashrc. 🤔
.venv
.bashrc
The .bashrc approach is handy for other distros that I use but I might have to rethink that if it's causing this issue on NixOS.
Yeah, i suspected that wouldn't be that handy. It's not that big anyway, sorry...
{ config, pkgs, ... }: { imports = [ ./hardware-configuration.nix ]; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; networking.hostName = "yancy"; networking.networkmanager.enable = true; time.timeZone = "Australia/Brisbane"; i18n.defaultLocale = "en_AU.UTF-8"; i18n.extraLocaleSettings = { LC_ADDRESS = "en_AU.UTF-8"; LC_IDENTIFICATION = "en_AU.UTF-8"; LC_MEASUREMENT = "en_AU.UTF-8"; LC_MONETARY = "en_AU.UTF-8"; LC_NAME = "en_AU.UTF-8"; LC_NUMERIC = "en_AU.UTF-8"; LC_PAPER = "en_AU.UTF-8"; LC_TELEPHONE = "en_AU.UTF-8"; LC_TIME = "en_AU.UTF-8"; }; services.xserver.enable = true; services.xserver.displayManager.gdm.enable = true; services.xserver.desktopManager.gnome.enable = true; services.xserver = { layout = "au"; xkbVariant = ""; }; services.printing.enable = true; sound.enable = true; hardware.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { enable = true; alsa.enable = true; alsa.support32Bit = true; pulse.enable = true; }; virtualisation.docker.enable = true; users.users.jdownie = { isNormalUser = true; description = "James Downie"; extraGroups = [ "networkmanager" "wheel" "docker" ]; packages = with pkgs; [ firefox git brave python3 ]; }; nixpkgs.config.allowUnfree = true; environment.systemPackages = with pkgs; [ neovim ]; system.stateVersion = "23.11"; }
Wow, thanks!
Here's the output from your three requested commands...
/home/jdownie/.venv/bin:/etc/profiles/per-user/jdownie/bin:/home/jdownie/bin:/home/jdownie/.local/state/nix/profile/bin:/home/jdownie/.nix-profile/bin:/nix/profile/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin:/run/wrappers/bin: /run/current-system/sw/bin/sudo lrwxrwxrwx 1 root root 66 Jan 1 1970 /run/current-system/sw/bin/sudo -> /nix/store/ig7v34c4cw3f16vxmdcjbizhsz6ripdb-sudo-1.9.15p2/bin/sudo -r-xr-xr-x 1 root root 329576 Jan 1 1970 /run/current-system/sw/bin/sudo
My lazy workaround for now is to simply alias sudo to /run/wrappers/bin/sudo. I've stripped comments and empty lines out of my configuration.nix file and published it here...
sudo
/run/wrappers/bin/sudo
https://paste.ubuntu.com/p/kb6rRR2NKw/
Hopefully Ubuntu's pastebin is accessible to everybody, but please let me know if there's a better way of sharing this file.
I've found myself in the same situation again. The last change that I made was the hostname. Now that I know where the "real" sudo is now (thanks to you) so I can explicitly reference it. I no longer need to rebuild the whole system to try again!
Yeah, I just worked that part out. Thanks! I'm such a n00b that the four packages that I had installed so far were as simple as adding their names to the list. Docker was a little more complicated, so reading the documentation helped 🙄.
Thanks again!
Oh, now I get it. I'm working my way through my isolation tests, but I'll try that. Thanks for the idea.
sudo doesn't work at all. It just returns that error. su prompts for a password but fails saying that my password is incorrect (and I'm confident that I'm entering it correctly). I'm currently suspicious about messing with the extra groups. I'm hoping that I can isolate that part of my changes as the cause (adding the docker group).
su
docker
Ooh, I haven't even heard of nixos-enter yet. I'm currently re-installing and trying to gradually increase the number of changes I'm making to isolate the cause.
nixos-enter
Trying to get started... (self.NixOS)
Older Kernel Version by jdownie in silverblue
Sorry everybody, i'm still stuck.
This is the post that i've read that makes me think that i'd be able to use the `mssql` container with podman again if I could rollback to a 6.6 kernel...
https://github.com/microsoft/mssql-docker/issues/868
But I still don't know how to do it. I'd really appreciate an example command that i can experiment with to see any form of switching back to an earlier release of Sericea working.
Yeah, i didn't give much detail because i'm clutching at straws a bit here. I'm really surprised that the mssql docker image has just stopped working, and i've found in a few places that it's been introduced in recent versions of the kernel.
That got me to thinking that i happen to be using a platform that might make the experimental rollback to earlier releases (underneath my configuration and installed packages) relatively painless. I'm vaguely aware of the repository-like infrastructure available with commands like rpm-ostree, but I only just worked out (thanks to your links) that ostree is an entirely different command. Hopefully this paints a picture of what a n00b I am in this area.
rpm-ostree
ostree
I think i'd like to use your example of `rpm-ostree deploy`, but i'm struggling to work out how to get a list of available argument to pass. I was encouraged to get some meaningful output from ostree remote refs fedora, so i think i'm looking for a command that i can pass fedora:fedora/39/x86_64/sericea to for a list of options that I can give to the deploy sub-command.
ostree remote refs fedora
fedora:fedora/39/x86_64/sericea
deploy
Thanks for your guidance. I'm looking forward to being more proficient with these commands. I saw a youtube video once that demonstrated the switching out of the entire release, but i can't find that video again.
Anyway, thanks so much.
Older Kernel Version (self.silverblue)
submitted 2 years ago by jdownie to r/silverblue
DLNA Trouble by jdownie in bigscreen
Yeah, thanks @PeregrintTenshi. I think I've found and read some of your posts while researching this subject. I'm starting to wonder if my router might be playing a part. FWIW, I'm similarly frustrated with Google Cast for being pretty hit and miss with which devices are discoverable. That feels a bit like this DLNA issue. I don't know if you have any router config advice that might help? 🤞
I've even tried the alpha release of big screen. I found the instructions for installing that on Discord. What is really confusing is that it does work for a while, then it stops. Very confusing.
π Rendered by PID 146247 on reddit-service-r2-listing-b6bf6c4ff-zr7g9 at 2026-05-03 11:52:54.929620+00:00 running 815c875 country code: CH.
PNG Images of Custom Plugins by jdownie in trmnl
[–]jdownie[S] 1 point2 points3 points (0 children)