worldofpeace_ changed the topic of #nixos to: NixOS stable: 20.03 ✨ https://discourse.nixos.org/t/nixos-20-03-release/6785 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-info
<V> jlv1: try lowercase wayland
<V> I assume you're setting QT_QPA_PLATFORM?
<V> er
<V> wayland-egl
<jlv1> V: ya. It's already lowercase though.
<jlv1> I can try that.
<{^_^}> [nixpkgs] @gdamjan closed pull request #98136 → matrix-appservice-irc: init at 0.20.3 → https://git.io/JURYw
hexa- has joined #nixos
<jlv1> Same error with `QT_QPA_PLATFORM=wayland-egl`, just no "wayland-egl" instead of no "wayland".
jumper149 has quit [Quit: WeeChat 2.9]
<jlv1> I didn't have this error with Qt 5.14 .
<jlv1> Hmm. I think it is an issue with NixOS. https://forum.qt.io/topic/111553/solved-qt-qpa-plugin-could-not-find-the-qt-platform-plugin-xcb-in/11 . It sounds like the plugin path isn't set for Qt 5.15, so it can't find any plugins.
zupo has joined #nixos
<jlv1> Does anything use Qt 5.15 in nixpkgs? If I'm understanding the issue, I don't think anything would work with Qt 5.15 on NixOS?
zupo has quit [Ping timeout: 264 seconds]
foozb has joined #nixos
cr4y1_ has quit [Ping timeout: 258 seconds]
mariatsji has joined #nixos
<foozb> i'm trying to write a nix expression that pulls a repo from github (or from a git source) including submodules.. i'm running into trouble with things like `builtins.fetchGit { fetchSubmodules = true; }` not working, despite several PRs and issues indicating that is a recent feature
<foozb> i'm running a recent 20.03 nixos with nix 2.3.6 .. but iirc, there's a way to do this with a different fetch function already available
<{^_^}> [nixpkgs] @marsam opened pull request #98137 → terraform_0_13: 0.13.2 -> 0.13.3 → https://git.io/JUROP
<jlv1> foozb: there is a `fetchFromGitHub`. I'm not sure if it support submodules though.
<V> fetchFromGitHub absolutely supports submodules
zanc has quit [Read error: Connection reset by peer]
<V> I think if you enable submodules it just falls back to fetchGit internally
mariatsji has quit [Ping timeout: 272 seconds]
<jlv1> Huh. I just tested `mirage-im`, which appears to use Qt 5.15, and no error. I'm not sure why Qutebrowser won't work with Qt 5.15 .
<foozb> jlv1thanks.. `fetchFromGitHub` gives no error when i pass `fetchSubmodules` as an argument in the repl.. i'll try it in my expression and see what happens
<infinisil> V: It does not, fetchFromGitHub is very different from fetchGit
<V> it falls back to *something*
<V> I know for certain that it has a different codepath for that
<infinisil> Oh yeah I guess it's easy to confuse, but it falls back to pkgs.fetchgit
<infinisil> If only fetchGit wasn't so close to fetchgit
<V> oh, ye
_ris is now known as ris
<infinisil> foozb: Oh, the argument is submodules, not fetchSubmodules
<V> Love me some consistency :)
justanotheruser has joined #nixos
<foozb> infinisil thank you! i'll try that.. i'm having different issues atm though.. it seems that `rev = ` doesn't work when i specify a branch name
dsx has quit [Quit: dsx]
<mvnetbiz_> I think you should use a tag name or commit hash
<V> rev only works for tags
<V> (or for commits, yeah)
dsx has joined #nixos
<V> branches change
<mvnetbiz_> do tags only change if you force push them
<V> correct
ris has quit [Ping timeout: 260 seconds]
<foozb> is there a way to specify a branch and just fail when the sha256 doesn't match?
<foozb> this would be bad, obv, but i'm still in development so updating a hash seems somewhat heavyweight
<V> foozb: just make a tag?
<foozb> i'll try refs/heads/$branch
<V> that might work, unsure
<V> I don't actually know how it resolves rev
teto has quit [Ping timeout: 244 seconds]
<bsima> Does haskellPackages.developPackage work for anyone? I just get "cabal2nix: nix-prefetch-url: createProcess: runInteractiveProcess: exec: does not exist"
cole-h has quit [Ping timeout: 260 seconds]
<foozb> it did V .. ok, now seeing whether the submodules work infinisil .. i got an error with `submodules = ` so i'm trying with `fetchSubmodules = ` .. i think it's using my local nixpkgs for that, unfortunately
<jlv1> foozb: the `nix-prefetch-github` command may make things a little easier.
<jlv1> You can use it like `nix-prefetch-github --rev "$branch" --nix $owner $repo`
<infinisil> foozb: It's fetchGit { submodules = true; }, but fetchFromGitHub { fetchSubmodules = true; }
<foozb> ok, it worked.. this is what i ended up with: `(import <nixpkgs> {}).fetchFromGitHub { owner = "$me"; repo = "$project"; rev = "refs/heads/$branch"; /*TODO: switch to a commit hash when ready*/ sha256 = "..."; fetchSubmodules = true; }`
zupo has joined #nixos
<foozb> infinisil, ah thank you for the clarification.. i wonder if `builtins.fetchGit` has any advantage over `(import <nixpkgs> {}).fetchFromGithub`?
<V> foozb: honestly, just use a commit hash right now. you're just setting yourself up for confusion when you forget to change the sha256 and update the branch & nothing changes b/c there's already a matching derivation in your nix store
<mvnetbiz_> I have done that
<V> gotten confused? :p
<foozb> V ah, actually i think i have done that in the past too.. it doesn't check the remote if there's already a matching derivation?
<V> foozb: correct.
<foozb> ok, i'll use a hash then. thank you
<infinisil> foozb: fetchGit is better if you're fetching Nix expressions, because then you don't need to do IFD (write ",IFD" more more info)
<infinisil> Since fetchGit uses the git in your command line to fetch it during evaluation time
<V> I think you might have to invalidate the sha256 regardless, but it's more obvious when you have a commit hash there to change
<V> POLP
<V> er
<V> POLS
<{^_^}> [nixpkgs] @maxeaubrey opened pull request #98138 → requests-aws4auth: unbreak on python 3.x, cleanup → https://git.io/JUROA
zupo has quit [Ping timeout: 260 seconds]
<foozb> infinisil, ok yeah i didn't realize this was related to the IFD stuff.. i am indeed fetching a nix expression that pins nixpkgs and overrides some things so i'll try out `builtins.fetchGit`
<foozb> infinisil looks like fetchGit doesn't take sha256
<foozb> i suppose at this point i know what my options are, i'll just go look at the sourcecode
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/33b044c4140 (from 5 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<foozb> that is some _flashy_ nix documentation .. it doesn't mention a sha256 argument though
<foozb> additionally, it seems my nix version doesn't have a `submodule` argument on `fetchGit`
<infinisil> It doesn't need it then
<infinisil> A git sha1 is a hash already anyways
<infinisil> And I think you probably need to pass that in pure eval mode
<infinisil> Indeed, not passing a rev makes --pure-eval fail
<foozb> pass `submodules` in pure eval mode? i'm not familiar; does that mean i run two commands, one to output the derivation, and one to do the compilation?
Fare has joined #nixos
<infinisil> No idea what you mean. If you don't know what pure eval mode is, ignore what I just said
<infinisil> Unless you want to know more about it
<infinisil> ,pure-eval
<{^_^}> Pure evaluation was introduced in Nix 2.0, it makes Nix evaluation completely reproducible, see https://github.com/NixOS/nix/commit/d4dcffd64349 for details
<foozb> oh, i'm not even using `nix build` yet.. i use `nix-build` heh..
<foozb> this does look pretty nice though (and i see the restriction you mentioned about rev) (and also, this is probably why i don't seem to have a submodule argument) .. i'll try it
<foozb> ok, i'm not having any luck with `builtins.fetchGit`
<infinisil> Has nothing to do with nix-build vs nix build
<foozb> ah, ok, i'm not aware of the difference then
<infinisil> Just a new CLI interface
<infinisil> But anyways, if you don't have the submodule argument then you're not using a recent enough Nix version. I tested stuff with `nix-shell -p nixUnstable -I nixpkgs=channel:nixpkgs-unstable`
<foozb> right, i'll be a pleb and wait until it's the default on nixos.. not sure i want to be on the bleeding edge yet
<infinisil> But maybe just go for fetchFromGitHub instead
<foozb> thank you
<infinisil> Oh and btw it's `submodules` not `submodule`
<infinisil> Maybe that was the problem
<foozb> i spelled it `submodules` in my undo history; i think i may have typod it in a message above, my bad
justanotheruser has quit [Ping timeout: 244 seconds]
<infinisil> Ah I see :)
<mog> ping talyz
<mog> talyz, updated impermance bug wanted to know if you wanted anythinge else before i rebooted it away https://github.com/nix-community/impermanence/issues/18
<{^_^}> nix-community/impermanence#18 (by mogorman, 6 days ago, open): bind mounts sometimes fail on rebuild switch
zupo has joined #nixos
<V> <infinisil> A git sha1 is a hash already anyways ← but it's weaker than a sha256, so I'd expect this to not work. kind of a pity, but it is what it is
<infinisil> V: I don't think it's a problem, since for it to be any security problem you'd have to have the same sha1 in the same repository
<V> infinisil: in the same object store*
<V> Nix currently doesn't check if an object is reachable from a branch in a particular repository, correct?
Ashy has quit [Ping timeout: 260 seconds]
hexa- has quit [Quit: WeeChat 2.9]
<infinisil> V: I think it actually does check that
<infinisil> Well, git itself, not Nix
<V> I guess the only place where this could be an issue is if the original commit was removed
<infinisil> probably
hexa- has joined #nixos
<V> This is a GitHub issue, not Git per-se
<V> I imagine GitHub probably has collision checks at this point, anyway
Ashy has joined #nixos
<V> So, I guess that's not really an issue, yeah
zupo has quit [Ping timeout: 258 seconds]
<infinisil> V: I just tried this: Create a github repo, push a commit to it, amend the commit, force push. Then try `fetchGit { url = "..."; rev = "<previous commit sha1>"; }`
<infinisil> git responds with `fatal: not a tree object: c32be91ebfffdf9e00290e594a15ec8b4a189f05`
<infinisil> fetchGit { url = "https://github.com/infinisil/repo"; rev = "c32be91ebfffdf9e00290e594a15ec8b4a189f05"; }
<infinisil> If you wanna try ^
<V> infinisil: got the original commit?
<infinisil> The c32 is the non-amended one
<infinisil> e39111116459be0fc5decdfebd51c94dbd3cc9b6 is the commit at current master, which I force pushed over the c32 one
<V> infinisil: I mean, what's the contents of c32
<infinisil> Not sure why that matters, but it's the same as e39
<infinisil> I just changed the commit message
<V> actually, nvm
da39a3ee5e6b4b0d has joined #nixos
<V> I guess they just don't allow pulling those?
<V> Interesting
<V> oh - I know why. It's because fetchGit must just pull HEAD and look for that revision
<V> or, hm
<V> I think Git acquired the ability to fetch arbitrary commits from a remote somewhat recently
<V> You can't access this via `git clone`, though
<{^_^}> [nixpkgs] @nh2 opened pull request #98140 → ntfy: Switch to python3. Also fixes test failure → https://git.io/JURsJ
zupo has joined #nixos
h0m1 has quit [Ping timeout: 272 seconds]
h0m1 has joined #nixos
<{^_^}> [nixos-homepage] @samueldr pushed 11 commits to feature/2020-r/last-mvps: https://git.io/JURsa
tarruda has quit [Read error: Connection reset by peer]
veleiro` has joined #nixos
tarruda has joined #nixos
veleiro has quit [Ping timeout: 260 seconds]
sigmundv_ has quit [Ping timeout: 264 seconds]
Fare has quit [Ping timeout: 244 seconds]
kleisli_ has quit [Ping timeout: 265 seconds]
alexherbo2 has quit [Remote host closed the connection]
Fare has joined #nixos
<{^_^}> [nixpkgs] @wkral opened pull request #98143 → python3Packages.word2vec: fix build → https://git.io/JURs5
<{^_^}> [nixpkgs] @midchildan opened pull request #98144 → maintainers.midchildan: update info → https://git.io/JURsb
Fare has quit [Ping timeout: 244 seconds]
<mvnetbiz_> infinisil, do you know approximately what the delay on your minecraft proxy thing usually is?
ransom has joined #nixos
kleisli_ has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Fare has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
zanc has joined #nixos
<zanc> is there a hack to make `<path>` works in pure flake?
knerten2 has joined #nixos
<{^_^}> [nixos-homepage] @samueldr pushed 5 commits to feature/2020-r/frontpage-banner: https://git.io/JURGV
knerten1 has quit [Ping timeout: 260 seconds]
<foozb> thanks for your help V infinisil jlv1
<{^_^}> [nixos-homepage] @samueldr opened pull request #536 → redesign: Add events banner (with NixCon banner) → https://git.io/JURGo
foozb has left #nixos [#nixos]
Scriptkiddi has quit [Quit: killed]
mrpi has quit [Quit: killed]
ajs124 has quit [Quit: killed]
das_j has quit [Quit: killed]
tylerjl has joined #nixos
ajs124 has joined #nixos
Scriptkiddi has joined #nixos
das_j has joined #nixos
mrpi has joined #nixos
leothrix has quit [Ping timeout: 240 seconds]
spacefrogg has quit [Quit: Gone.]
aw has quit [Quit: Quitting.]
xd1le has quit [Read error: Connection reset by peer]
aw has joined #nixos
spacefrogg has joined #nixos
xd1le has joined #nixos
CyberManifest has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
Pwnna has quit [Quit: Bye]
Pwnna has joined #nixos
alp_ has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #98145 → xonsh: 0.9.21 -> 0.9.22 → https://git.io/JURZo
xd1le has quit [Read error: Connection reset by peer]
xd1le has joined #nixos
cjpbirkbeck has quit [Quit: Goodbye, take care]
Supersonic112 has joined #nixos
Supersonic has quit [Ping timeout: 260 seconds]
Supersonic112 is now known as Supersonic
xd1le has quit [Remote host closed the connection]
xd1le has joined #nixos
domogled has quit [Quit: domogled]
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ransom has joined #nixos
alp_ has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @mkg20001 pushed to mkg/cinrelnotes « release-notes: mention cinnamon »: https://git.io/JURnK
da39a3ee5e6b4b0d has quit [Ping timeout: 244 seconds]
buffet has quit [Ping timeout: 246 seconds]
andreas303 has quit [Remote host closed the connection]
buffet has joined #nixos
<worldofpeace> zanc: I believe '<?>' has to be a nix path entry. but with flakes nix path is dead... so the only real hack is to reintroduce nix_path somehow. though truthfully, nix_path is used essentially for the same things that flakes was made to do. so I could access a module inside nixpkgs like inputs.nixpkgs.nixosModules.notDetected
andreas303 has joined #nixos
<{^_^}> [nixpkgs] @josephtheengineer closed pull request #93178 → aerc: patch accounts.conf open permissions error → https://git.io/JJsdS
buffet has quit [Quit: Ping timeout (120 seconds)]
da39a3ee5e6b4b0d has joined #nixos
est31 has quit [Remote host closed the connection]
est31 has joined #nixos
endformationage has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @mkg20001 pushed to mkg/cinrelnotes « release-notes: mention cinnamon »: https://git.io/JURcT
<zanc> worldofpeace: what about passing `extraArgs = { inherit inputs; }` to `nixpkgs.lib.nixosSystem`?
<not-rager> I've got a box I put nixos on that I'm gonna stick in a closet and forget about
<not-rager> what's the ideal way to install a service that's only available from unstable?
kleisli_ has quit [Ping timeout: 244 seconds]
<not-rager> I'm really new to what the nix-way to do things is
mariatsji has joined #nixos
dbmikus has joined #nixos
<worldofpeace> zanc: I do believe you have to pass flake inputs as arguments to the all the modules.
<worldofpeace> but I don't see any problem with that.
mariatsji has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @mkg20001 pushed to mkg/cinrelnotes « release-notes: mention cinnamon »: https://git.io/JURcG
ddellacosta has quit [Ping timeout: 260 seconds]
lotharn has quit [Ping timeout: 240 seconds]
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @mkg20001 opened pull request #98146 → [20.09] cinnamon release notes → https://git.io/JURc4
<notgne2> not-rager: it depends on how packaged it is really, but it's generally pretty simple
<{^_^}> [nixpkgs] @worldofpeace merged pull request #98146 → [20.09] cinnamon release notes → https://git.io/JURc4
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to release-20.09: https://git.io/JURc2
<notgne2> if the package exists on stable but not the service, you can just do `imports = [ <unstable/nixos/modules/services/something/something.nix> ];` (assuming you have the unstable channel set up)
<Ke> not-rager: for a single package, I would just copy-paste, if that works out
<notgne2> if the package doesn't exist in stable either, sometimes you can do `services.something.package = (import <unstable> {}).something;` or you might have to set it in your overlay
<Ke> if this is unstable of 20.09, it'll also get released soon
<Ke> if I was setting up something now, I might set up 20.09 directly
<worldofpeace> ermm, while 20.09 was just recently branched from "unstable" (and unstable is actually usable at most times) I wouldn't fully suggest getting to know nixos through an alpha/beta quality release. But it will probably be mostly fine 👍️
<{^_^}> [nixpkgs] @worldofpeace merged pull request #97606 → release-notes: mention cinnamon → https://git.io/JUchh
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JURcr
<{^_^}> [nixpkgs] @worldofpeace pushed 0 commits to mkg/cinrelnotes: https://git.io/JURco
mrte has quit [Ping timeout: 272 seconds]
Yaniel has quit [Ping timeout: 265 seconds]
<Ke> well nixos had broken ldap for weeks in stable, so it's not like stable delivers either
<worldofpeace> not really fond of that opinion when I was the one who managed and released it. but I guess we're allowed to disagree
<{^_^}> [nixpkgs] @worldofpeace merged pull request #97974 → nixos/plasma5: Fix build with config.services.colord.enable = true → https://git.io/JU8jb
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JURcM
<{^_^}> [nixpkgs] @worldofpeace pushed commit from @alapshin to release-20.09 « nixos/plasma5: Fix build with config.services.colord.enable = true »: https://git.io/JURcD
orivej has joined #nixos
hke has quit [Read error: Connection reset by peer]
ransom has joined #nixos
hke has joined #nixos
kleisli_ has joined #nixos
Rusty1 has quit [Quit: WeeChat 2.3]
<mvnetbiz_> How can I override the /dev/sd* name of a specific usb device? I cant figure out if it's the kernel itself that makes that device node or if its udev, but if its udev I can't figure out how to make it /dev/my_usb
<mvnetbiz_> I know I can make a symlink /dev/my_usb -> /dev/sdX but I would like no /dev/sdX if thats possible
mmohammadi9812 has joined #nixos
captn3m0 has quit [Ping timeout: 256 seconds]
<srhb> mvnetbiz_: I don't think you can rename in general, I think that's only in special cases.
mmohammadi9812 has quit [Ping timeout: 256 seconds]
dansho has joined #nixos
<{^_^}> [nixpkgs] @etu closed pull request #98049 → [wip] hotel: init at 0.8.7 → https://git.io/JUBkz
justanotheruser has joined #nixos
<justanotheruser> On head of origin/20.09, trying to `nixos-rebuild switch`, however I get the error "error: getting attributes of path '/nix/store/mcq4b302nnfrbrmgdnp0s0xykzkl145a-zziplib-0.13.71': No such file or directory". Why might this be? https://dpaste.com/CXCVHP598.txt
<srhb> justanotheruser: Can you `nix-store --verify-path /nix/store/mcq4b302nnfrbrmgdnp0s0xykzkl145a-zziplib-0.13.71` ?
Guest74761 has quit []
dsal has joined #nixos
dsal is now known as Guest85365
<srhb> justanotheruser: or nix-store --verify --check-contents to check your entire store
<srhb> justanotheruser: That error is usually due to store/db corruption (filesystem barfed, memory issues, hardware failure, ...)
captn3m0 has joined #nixos
<Ke> mvnetbiz_: do you really need that, udev rules do allow you to make a symlink
<Ke> mvnetbiz_: maybe you could use fs label, or whatever is your use case
Guest85365 is now known as dsal
ransom has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
palo1 has joined #nixos
ransom has joined #nixos
sangoma has joined #nixos
palo has quit [Ping timeout: 272 seconds]
palo1 is now known as palo
ransom has quit [Client Quit]
mrte has joined #nixos
<Ke> earlier on nix was not power failure safe and did not sync before registering work done
<Ke> we had missing files and whatnot due to that, this is possibly now fixed
<Ke> I still have sync in my wrapper script after first failure like that
mrte has quit [Ping timeout: 260 seconds]
archbung has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
veleiro` is now known as veleiro
<Ke> this was fixable with tar -C /nix/ -c store --lzop | ssh host sudo tar -xp --lzop -C /nix from another host
archbung has quit [Client Quit]
veleiro has joined #nixos
veleiro has quit [Changing host]
zupo has joined #nixos
<Ke> as any nix command refused to work with my skill level at the time
<Ke> not recommending this now, as people here probably know better
<__red___> I'm in a nix-shell -p stdenv ncurses environment
<__red___> but my build system isn't automatically picking up the include and lib paths for ncurses
<__red___> I see them in NIX_LDFLAGS for example
<__red___> but what's the mechanism for getting those paths into compilers and linkers typically?
saschagrunert has joined #nixos
<__red___> oh - that's not the problem
<__red___> the problem seems to be that the command is being truncated
<__red___> I'll contact the build-system maintainers
mmohammadi9812 has joined #nixos
Yaniel has joined #nixos
rihards has joined #nixos
knupfer has joined #nixos
cole-h has joined #nixos
buffet has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
zupo has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Fare has quit [Ping timeout: 244 seconds]
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
incognito9999 has quit [Ping timeout: 256 seconds]
buffet has quit [Client Quit]
Fare has joined #nixos
davidv7_ has joined #nixos
davidv7 has quit [Ping timeout: 256 seconds]
buffet has joined #nixos
mariatsji has joined #nixos
mmohammadi9812 has joined #nixos
maxdevjs has quit [Ping timeout: 265 seconds]
growpotkin has quit [Quit: ZNC 1.8.1 - https://znc.in]
ManiacOfMadness` has joined #nixos
<mvnetbiz_> On linux dragging windows there is like 1 frame delay between the cursor and moving a window at least in X. I don't notice that in Windows. I wonder which has less total latency though
ManiacOfMadness has quit [Remote host closed the connection]
dansho has quit [Remote host closed the connection]
dansho has joined #nixos
<{^_^}> [nixpkgs] @doronbehar pushed to master « all-packages.nix: Remove trailing space for qutebrowser »: https://git.io/JURlL
Cale has quit [Ping timeout: 246 seconds]
<Ke> mvnetbiz_: linux is so heterogenous that your statement is only part of the truth
ToxicFrog has quit [Ping timeout: 265 seconds]
kreyren_ has quit [Remote host closed the connection]
kreyren_ has joined #nixos
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
mvnetbiz_7 has joined #nixos
mvnetbiz_ has quit [Ping timeout: 244 seconds]
mvnetbiz_7 is now known as mvnetbiz_
davidv7_ has quit [Ping timeout: 272 seconds]
buffet has quit [Ping timeout: 264 seconds]
mmohammadi9812 has joined #nixos
incognito9999 has joined #nixos
Cale has joined #nixos
sputny has joined #nixos
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
mmohammadi9812 has joined #nixos
mmohammadi9812 has quit [Client Quit]
cr4y1_ has joined #nixos
ToxicFrog has joined #nixos
knupfer has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @lsix pushed to release-20.09 « pythonPackages.pyslurm: mark as broken »: https://git.io/JURlN
lsix has joined #nixos
Poumpaloumpa has joined #nixos
mmohammadi9812 has joined #nixos
da39a3ee5e6b4b0d has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @hotlineguy opened pull request #98147 → Adding myself to the maintainers-list, this time with a seperate commit → https://git.io/JUR8q
mmohammadi9812 has quit [Ping timeout: 272 seconds]
mmohammadi9812 has joined #nixos
meh` has joined #nixos
ixxie has joined #nixos
<ixxie> how do I use nix-prefetch-url / nix-prefetch-git to get a sha256 hash suitable for fetchFromGitHub?
<mvnetbiz_> there is a nix-prefetch-github command
<ixxie> oh neat
<cole-h> nix-prefetch-url --unpack on the .tar.gz
<mvnetbiz_> thats what I have been doing I didnt know there was the github command
civodul has joined #nixos
meh` has quit [Ping timeout: 260 seconds]
<regnat> Orbstheorem: That's awesome, thanks a lot
<regnat> Orbstheorem++
<{^_^}> Orbstheorem's karma got decreased to -1
<{^_^}> Wait no, it got *increased* to 1
AlpineLlama has quit [Ping timeout: 272 seconds]
mallox has joined #nixos
da39a3ee5e6b4b0d has joined #nixos
dermetfan has joined #nixos
zakame has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @povik opened pull request #98149 → python3.pkgs.libiio: fix build → https://git.io/JUR8V
alp_ has joined #nixos
maier has joined #nixos
maier is now known as kenran
<ixxie> cheers cole-h, also good to know
<{^_^}> [nixpkgs] @raboof closed pull request #97971 → inkcut: fix by using the standard qt5 version → https://git.io/JU8hE
dermetfan has quit [Ping timeout: 272 seconds]
stiell has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #98112 → mkvtoolnix: 48.0.0 -> 50.0.0 → https://git.io/JUBj0
<{^_^}> [nixpkgs] @rnhmjoj pushed 2 commits to master: https://git.io/JUR8d
gthm has joined #nixos
stiell has joined #nixos
Fare has quit [Ping timeout: 240 seconds]
meh` has joined #nixos
stiell has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @zowoq merged pull request #98126 → gitAndTools.gh: 0.12.0 -> 1.0.0 → https://git.io/JURI8
<{^_^}> [nixpkgs] @zowoq pushed to master « gitAndTools.gh: 0.12.0 -> 1.0.0 »: https://git.io/JUR4a
xlei has quit [Quit: ZNC - https://znc.in]
<{^_^}> [nixpkgs] @wamserma opened pull request #98150 → mmc-utils: 2018-12-14 -> 2019-10-04 → https://git.io/JUR4w
cfricke has joined #nixos
meh` has quit [Ping timeout: 256 seconds]
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/JUR4M
<{^_^}> [nixpkgs] @mvnetbiz closed pull request #98147 → Add hotlineguy to maintainers-list.nix → https://git.io/JUR8q
<s1341> hi all.
<s1341> I'm trying to build Android on nixos. I'm using the shell.nix specificied here https://nixos.wiki/wiki/Android, but am getting the following error:
<s1341> prebuilts/clang/host/linux-x86/clang-r383902b/bin/clang.real: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
<s1341> ldd on clang.real shows that it CAN find libz.so.1:
<{^_^}> [nixpkgs] @zowoq merged pull request #98033 → cri-o: 1.18.3 -> 1.19.0 → https://git.io/JU4MQ
<{^_^}> [nixpkgs] @zowoq pushed 2 commits to master: https://git.io/JURBU
<s1341> anyone have any ideas?
hiro98 has joined #nixos
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
mmohammadi9812 has joined #nixos
mmohammadi9812 has quit [Client Quit]
sangoma has quit [Read error: Connection reset by peer]
saschagrunert has quit [Read error: Connection reset by peer]
mmohammadi9812 has joined #nixos
saschagrunert has joined #nixos
cr4y1_ has quit [Read error: Connection reset by peer]
hiro98 has quit [Quit: hiro98]
hiro99 has joined #nixos
dansho has quit [Quit: Leaving]
hyper_ch2 has joined #nixos
hiro99 is now known as hiro98
cr4y1_ has joined #nixos
xlei has joined #nixos
bahamas has joined #nixos
bahamas has joined #nixos
bahamas has quit [Changing host]
cole-h has quit [Quit: Goodbye]
cr4y1_ has quit [Read error: Connection reset by peer]
supercoven has joined #nixos
cr4y1_ has joined #nixos
teto has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #98144 → maintainers.midchildan: update info → https://git.io/JURsb
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JURBA
sangoma has joined #nixos
<{^_^}> [nixpkgs] @beardhatcode closed pull request #98123 → Add Zettlr → https://git.io/JURUd
<{^_^}> [nixpkgs] @thefloweringash opened pull request #98151 → pythonPackages.netaddr: 0.7.19 -> 0.8.0 → https://git.io/JURRO
<Taneb> What alternatives are there to nix-serve?
<{^_^}> [nixpkgs] @danieldk merged pull request #98120 → transcribe: drop → https://git.io/JURv7
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JURR3
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JURRn
cantstanya has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @zimbatm merged pull request #98137 → terraform_0_13: 0.13.2 -> 0.13.3 → https://git.io/JUROP
<{^_^}> [nixpkgs] @zimbatm pushed commit from @marsam to master « terraform_0_13: 0.13.2 -> 0.13.3 (#98137) »: https://git.io/JURR4
cantstanya has joined #nixos
<{^_^}> [nixos-org-configurations] @zimbatm closed pull request #112 → tf/cache: Redirect HTTP to HTTPS → https://git.io/JfaEc
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
thc202 has joined #nixos
syd has joined #nixos
CyberManifest is now known as CyberMan
<syd> Hi! Could anyone help me with https://github.com/nix-community/home-manager/issues/1498 please? It's messing with my head because it looks like I found a bug but there's also a test for this feature so I'm not sure what is going wrong..
<{^_^}> nix-community/home-manager#1498 (by NorfairKing, 46 minutes ago, open): Mime types and apps
mmohammadi9812 has joined #nixos
CyberMan is now known as CyberManifest
<s1341> anyone have any help for me?
mmohammadi9812 has quit [Client Quit]
<{^_^}> [patchelf] @DerDakon opened pull request #237 → avoid string table duplicates and DT_NEEDED reference corruption when using --replace-needed multiple times → https://git.io/JUR0d
mmohammadi9812 has joined #nixos
syd has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @doronbehar opened pull request #98152 → gnomeExtensions.gsconnect: 39 -> 41 → https://git.io/JUREZ
<{^_^}> [nix] @maljub01 closed pull request #4022 → Fix multi-user installation with a symlinked store → https://git.io/JUBpz
<{^_^}> [nix] @edolstra pushed to remove-corepkgs-config « Remove corepkgs/config.nix »: https://git.io/JUREK
<{^_^}> [nix] @edolstra opened pull request #4025 → Remove corepkgs/config.nix → https://git.io/JUREP
stiell has joined #nixos
hiro98 has quit [Ping timeout: 256 seconds]
lafa has joined #nixos
domogled has joined #nixos
meh` has joined #nixos
matthewbauer has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
cosimone has joined #nixos
meh` has quit [Ping timeout: 260 seconds]
arjen-jonathan has joined #nixos
lord| has quit [Ping timeout: 244 seconds]
werner291 has joined #nixos
lord| has joined #nixos
siel has joined #nixos
sigmundv_ has joined #nixos
evalexpr has quit [Quit: Bye]
sangoma has quit [Ping timeout: 240 seconds]
cosimone has quit [Quit: Quit.]
cosimone has joined #nixos
AlpineLlama has joined #nixos
meh` has joined #nixos
meh` has quit [Ping timeout: 272 seconds]
mmk2410 has joined #nixos
<{^_^}> [nixpkgs] @FRidh pushed to master « Revert "python: gsd: 1.7.0 -> 1.9.3" »: https://git.io/JURgZ
cr4y1_ has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @FRidh pushed to release-20.09 « Revert "python: gsd: 1.7.0 -> 1.9.3" »: https://git.io/JURg0
cr4y1_ has joined #nixos
civodul has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @Ma27 merged pull request #98145 → xonsh: 0.9.21 -> 0.9.22 → https://git.io/JURZo
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JURgF
meh` has joined #nixos
da39a3ee5e6b4b0d has quit [Ping timeout: 240 seconds]
srhm has joined #nixos
alp_ has quit [Ping timeout: 272 seconds]
eoli3n_ has joined #nixos
meh` has quit [Ping timeout: 272 seconds]
sangoma has joined #nixos
Poumpaloumpa has quit [Ping timeout: 240 seconds]
spudly- has joined #nixos
alp_ has joined #nixos
spudly- is now known as spudly
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
fendor has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
hiro98 has joined #nixos
mallox has quit [Ping timeout: 256 seconds]
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
jumper149 has joined #nixos
<{^_^}> [nixpkgs] @saschagrunert opened pull request #98153 → kubernetes: 1.19.1 -> 1.19.2 → https://git.io/JURV0
domogled1 has joined #nixos
domogled has quit [Ping timeout: 260 seconds]
domogled1 is now known as domogled
xd1le has quit [Read error: Connection reset by peer]
xd1le has joined #nixos
fendor has quit [Remote host closed the connection]
sxiii has joined #nixos
eoli3n_ has quit [Ping timeout: 260 seconds]
werner291 has quit [Ping timeout: 240 seconds]
domogled has quit [Ping timeout: 272 seconds]
domogled has joined #nixos
mallox has joined #nixos
astro has quit [Read error: Connection reset by peer]
astro has joined #nixos
domogled has quit [Read error: Connection reset by peer]
sangoma has quit [Read error: Connection reset by peer]
domogled has joined #nixos
cosimone has quit [Quit: Quit.]
cosimone has joined #nixos
orivej has quit [Ping timeout: 260 seconds]
orivej has joined #nixos
xd1le has quit [Read error: Connection reset by peer]
rprije has quit [Ping timeout: 260 seconds]
marcusr has quit [Remote host closed the connection]
zakame has joined #nixos
xd1le has joined #nixos
hiro98 has quit [Ping timeout: 272 seconds]
marcusr has joined #nixos
cr4y1_ has quit [Read error: Connection reset by peer]
alexherbo2 has joined #nixos
cr4y1_ has joined #nixos
sangoma has joined #nixos
cr4y1_ has quit [Read error: Connection reset by peer]
medvid has quit [Ping timeout: 244 seconds]
<s1341> anyone have any luck compiling android on nixos???
cr4y1_ has joined #nixos
medvid has joined #nixos
werner291 has joined #nixos
<s1341> colemickens: i want to compile android from a checkout I did of the repo....
<{^_^}> [nixos-homepage] @garbas merged pull request #533 → redesign: Implements last MVPs → https://git.io/JUB0F
<{^_^}> [nixos-homepage] @garbas pushed 27 commits to feature/2020-redesign: https://git.io/JURrQ
<{^_^}> [nixos-homepage] @garbas pushed 0 commits to feature/2020-r/last-mvps: https://git.io/JURr7
<colemickens> oh sorry
<{^_^}> [nix] @regnat opened pull request #4027 → Fix garbage collection of CA derivations → https://git.io/JURrN
<{^_^}> [nixos-homepage] @garbas pushed 2 commits to feature/2020-r/frontpage-banner: https://git.io/JURrj
<s1341> turns out this is what I awas missing: envVars.ALLOW_NINJA_ENV = "true";
<{^_^}> [nix] @edolstra merged pull request #4025 → Remove corepkgs/config.nix → https://git.io/JUREP
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/JURoq
<{^_^}> [nix] @edolstra pushed 0 commits to remove-corepkgs-config: https://git.io/JURom
hiro99 has joined #nixos
redkahuna has joined #nixos
gxt has quit [Remote host closed the connection]
gxt has joined #nixos
<teto> LVM noob here, I followed a tutorial to install nixos with LUKS on a root filesystem. First reboot was ok, but hten when I tried rebuilding a more elaborate configuration.nix with an uptodate nixos-unstable. When booting on the new generations, I just see the DELL logo and not the prompt asking for my LUKS passphrase. During the nixos-rebuild, I see 'lvm2-activation-generator: lvmconfig failed'. I
<teto> am surprised that error doesn't abort the rebuild. Not sure where to look
gxt has quit [Remote host closed the connection]
<{^_^}> [nix] @edolstra merged pull request #4027 → Fix garbage collection of CA derivations → https://git.io/JURrN
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/JURo4
sangoma has quit [Read error: Connection reset by peer]
gxt has joined #nixos
meh` has joined #nixos
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/441a7da8080 (from 2 days ago, history: https://channels.nix.gsc.io/nixos-unstable)
redkahuna has quit [Quit: WeeChat 2.2]
redkahuna has joined #nixos
cosimone has quit [Quit: Quit.]
<mvnetbiz_> I am a little confused on flakes I get the high level point of it, but I am curious to try moving my few nixos hosts' configuration to it. It looks like flakes follow a similar pattern to NixOS module & overlay? It looks like would just need nixpkgs in inputs, and I can output overlays, packages, modules. I dont see very many trivial but broad
<mvnetbiz_> examples of a flake. I am mainly wondering what types do I pass to overlays/packages/nixosModules, and If I provide module A and B, can I make A depend on B just by having them both in the outputs?
mmohammadi9812 has joined #nixos
<{^_^}> [nix] @edolstra merged pull request #3829 → Remove storetype delegate reg store -- contains #3736 → https://git.io/JURKe
<{^_^}> [nix] @edolstra pushed 8 commits to master: https://git.io/JURKv
domogled1 has joined #nixos
domogled has quit [Ping timeout: 260 seconds]
domogled1 is now known as domogled
<mvnetbiz_> does an overlay in my flake apply to nixpkgs? I guess I just need to experiment with this myself.
cosimone has joined #nixos
knupfer has joined #nixos
wolfshappen has quit [Ping timeout: 240 seconds]
ericsagnes has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @primeos opened pull request #98154 → mesa: 20.1.7 -> 20.1.8 → https://git.io/JURKB
wolfshappen has joined #nixos
<teto> mvnetbiz_: you can use self to reference stuff in your flake
<teto> I've been experimenting a bit with it myself and when using local flakes, I found --no-write-lock-file invaluable
<mvnetbiz_> What's that do?
cosimone has quit [Quit: Quit.]
fendor has joined #nixos
buffet has joined #nixos
<pheoxy> anyone know why I keep getting "Missing CNI default network" on root podman on NixOS 20.03?
<sxiii> Greetings NixOS community :) I am trying to build a personalized ISO Live image of NixOS with a packages of my choice. I'm using the "nixos-generators" from here: https://github.com/nix-community/nixos-generators
<pheoxy> without root works fine but I'm trying to get some containers moved over from a old ubuntu box that was using docker. I've switched most of my computers to using podman but thats on my fedora laptop and it works fine
<sxiii> Does anybody knows how to actually add packages from repos to "configuration.nix" file? I've tried to do it several ways and the system builds OK but it lacks the packages that I choose.
<pheoxy> I've read the message on the wiki that podman will have a easier install in 20.09 for nix-configs
<{^_^}> [nixpkgs] @Infinisil opened pull request #98155 → Improved module errors → https://git.io/JURKP
<pheoxy> sxiii:
<pheoxy> did you add the repo to nix-channel?
buffet has quit [Ping timeout: 260 seconds]
knupfer has quit [Read error: Connection reset by peer]
<sxiii> pheoxy: can you share with me a some reference configuration.nix file that adds any specific package of your choice?
<sxiii> So I can try to build it and see if the package is available
<sxiii> I've tried with "htop" recently but had no success
NeoCron has joined #nixos
<Mic92> sxiii: what method did you try, environment.systemPackages?
<Mic92> is your configuration picked up?
<Mic92> try to make an syntax error and see if it still builds.
hiro99 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @primeos merged pull request #98135 → signal-desktop: ringrtc depends on libpulseaudio → https://git.io/JURqS
<{^_^}> [nixpkgs] @primeos pushed commit from @collares to master « signal-desktop: ringrtc depends on libpulseaudio »: https://git.io/JUR6k
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JUR6I
<{^_^}> [nixpkgs] @primeos pushed commit from @collares to release-20.09 « signal-desktop: ringrtc depends on libpulseaudio »: https://git.io/JUR6q
<sxiii> Mic92: error in configuration.nix leads to error when building the ISO
<pheoxy> I just use it like that
<sxiii> So yes, it is KINDA picked up
<pheoxy> then I add a repo using nix-channel command
<sxiii> However, I disabled NGINX web server by commenting the line with it in config file, but, when I build, I still have NGINX enabled and working. :D
<{^_^}> [nixpkgs] @primeos merged pull request #98154 → mesa: 20.1.7 -> 20.1.8 → https://git.io/JURKB
<{^_^}> [nixpkgs] @primeos pushed to staging « mesa: 20.1.7 -> 20.1.8 (#98154) »: https://git.io/JUR6Z
<pheoxy> then nixos-rebuild dry-build to check it worked
D_ has quit [Ping timeout: 265 seconds]
<pheoxy> just change "unstable" metions to your repo of choice
meh` has quit [Quit: I don't want to live on this planet anymore.]
<mvnetbiz_> I don't want to say not to use that tool, but maybe try https://nixos.wiki/wiki/Creating_a_NixOS_live_CD
tnias[m] has joined #nixos
<mvnetbiz_> If you want to add to the existing installer you can add <nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix> instead of cd-minimal.nix
hoxtonhopper has joined #nixos
<Orbstheorem> Hello o/ I'm looking for a minimalistic image viewer that updates the image as they change. I would love to use feh, but it doesn't refresh the image when the file changes.
<sxiii> Ok thanks for the wiki link mvnetbiz_ I will check it out :)
lorimer has quit [Disconnected by services]
lorimer has joined #nixos
buffet has joined #nixos
sangoma has joined #nixos
dermetfan has joined #nixos
<multun> hello ! can you have multiple slightly different derivations installed at the same time, that contain a file at the same path but don't trigger a conflict?
kaliumxyz has joined #nixos
<multun> I have two derivations that contain two different .so at the same path, and home-manager complains
<multun> I tried moving the files to some random subdirectory instead of /lib, but it doesn't help
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
<mvnetbiz_> Orbstheorem, I dont know any light weight ones, the only I can recall is eog that refreshes
<mvnetbiz_> I tried mpv --loop that doesn't re-read the file though
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
fendor_ has joined #nixos
nikivi has joined #nixos
fendor has quit [Ping timeout: 256 seconds]
<mvnetbiz_> Orbstheorem, from imagemagick: `display -update 1 <file>`
<mvnetbiz_> 1=number of seconds
zakame has quit [Read error: Connection reset by peer]
sangoma has quit [Read error: Connection reset by peer]
<Orbstheorem> mvnetbiz_: I don't think it's working in my system. It does not refresh.
<mvnetbiz_> How are you cnaging the file
<{^_^}> [patchelf] @DerDakon opened pull request #238 → fix roundUp() to not truncate 64 bit values → https://git.io/JURia
<mvnetbiz_> i was opening test.png and then doing cp test2.png test.png to overwrite it
cr4y1_ has quit [Remote host closed the connection]
<mvnetbiz_> Orbstheorem, what kind of filesystem is the image on?maybe tht makes a different
cr4y1_ has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #98129 → react-native-debugger: 0.9.10 -> 0.11.4 → https://git.io/JURLm
<{^_^}> [nixpkgs] @Ma27 pushed 4 commits to master: https://git.io/JURio
<Orbstheorem> btrfs xD
<Orbstheorem> inotifywait works xD
zakame has joined #nixos
sangoma has joined #nixos
ericsagnes has joined #nixos
civodul has joined #nixos
kahiru has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @Ma27 pushed 3 commits to release-20.09: https://git.io/JURPe
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/cbe0b2e2c51 (from 14 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
ericsagnes has quit [Ping timeout: 272 seconds]
alp_ has quit [Ping timeout: 260 seconds]
gustavderdrache has joined #nixos
hyper_ch2 has quit [Ping timeout: 240 seconds]
<{^_^}> [patchelf] @edolstra merged pull request #238 → fix roundUp() to not truncate 64 bit values → https://git.io/JURia
<{^_^}> [patchelf] @edolstra pushed 2 commits to master: https://git.io/JURPt
hyper_ch2 has joined #nixos
kahiru has joined #nixos
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
zakame has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #98127 → eksctl: 0.26.0 -> 0.27.0 → https://git.io/JURIu
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JURP8
<{^_^}> [nixpkgs] @marsam opened pull request #98156 → _3270font: 2.0.4 -> 2.1.0 → https://git.io/JURP0
<{^_^}> [nixpkgs] @raboof opened pull request #98157 → grpcio-tools: add setuptools dependency → https://git.io/JURPE
zakame has joined #nixos
waleee-cl has joined #nixos
Rusty1 has joined #nixos
Yaniel has quit [Ping timeout: 272 seconds]
zakame has quit [Ping timeout: 260 seconds]
cosimone has joined #nixos
Poumpaloumpa has joined #nixos
hyper_ch2 has quit [Ping timeout: 240 seconds]
mmohammadi9812 has joined #nixos
gxt has quit [Remote host closed the connection]
zakame has joined #nixos
gxt has joined #nixos
joesventek has quit [Quit: Quit]
Pratzkas has joined #nixos
<Pratzkas> servus
joesventek has joined #nixos
kahiru has quit [Ping timeout: 272 seconds]
sangoma has quit [Ping timeout: 256 seconds]
joesventek has quit [Client Quit]
joesventek has joined #nixos
Pratzkas has left #nixos [#nixos]
domogled has quit [Ping timeout: 240 seconds]
domogled has joined #nixos
ericsagnes has joined #nixos
wnklmnn has joined #nixos
kahiru has joined #nixos
hoxtonhopper has quit [Ping timeout: 272 seconds]
alexherbo22 has joined #nixos
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
buffet has quit [Quit: Spline - https://spline.de]
alexherbo2 has quit [Ping timeout: 240 seconds]
alexherbo22 is now known as alexherbo2
nikivi has joined #nixos
joesventek has quit [Quit: Quit]
joesventek has joined #nixos
redkahuna has quit [Ping timeout: 260 seconds]
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
redkahuna has joined #nixos
domogled has quit [Ping timeout: 240 seconds]
inkbottle has quit [Quit: Konversation terminated!]
pingiun has joined #nixos
sxiii has quit [Remote host closed the connection]
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
<pingiun> did someone else notice firefox sync server not working on 20.03? I have this error: error: webtest-2.0.32 not supported for interpreter python2.7
inkbottle has joined #nixos
nikivi has joined #nixos
ransom has joined #nixos
redkahuna has quit [Ping timeout: 258 seconds]
alexherbo27 has joined #nixos
orivej has quit [Ping timeout: 272 seconds]
alexherbo2 has quit [Ping timeout: 272 seconds]
alexherbo27 is now known as alexherbo2
orivej has joined #nixos
<mvnetbiz_> There are a few python 2 applications that had their decencies get updated beyond the point where they supported python 2 :/
Poumpaloumpa has quit [Quit: Konversation terminated!]
redkahuna has joined #nixos
ericsagnes has quit [Ping timeout: 244 seconds]
m4ts has joined #nixos
<simpson> Welcome to the Python ecosystem. Python 2 support is slowly rotting and strangling off projects which didn't port.
<mvnetbiz_> lol it looks like webtest got disabled for old python because one of its own dependencies doesn't work
<ar> it's been more than 10 years now since py2 got deprecation notices
<simpson> ar: Turns out that it's not possible to simply unilaterally order an entire ecosystem to change or die.
<{^_^}> [nixpkgs] @NeQuissimus pushed 3 commits to master: https://git.io/JUR15
<{^_^}> [nixpkgs] @NeQuissimus pushed 2 commits to release-20.03: https://git.io/JUR1d
<ar> simpson: noone expected anyone to immediately migrate to py3. but 10 years is plenty of time
zakame has quit [Ping timeout: 240 seconds]
redkahuna has quit [Ping timeout: 264 seconds]
orivej has quit [Ping timeout: 264 seconds]
<mvnetbiz_> we still have a few more months until we have to start porting
<{^_^}> [nixpkgs] @NeQuissimus pushed 3 commits to release-20.09: https://git.io/JUR1N
<simpson> ar: The PyPy folks declared that they're never migrating and that they have the resources to support themselves. Continuing to ship their interpreters will eventually require a Python 2 bootstrap just for them.
<{^_^}> [nixos-homepage] @garbas pushed to feature/2020-r/frontpage-banner « improve the counter »: https://git.io/JUR1x
alexherbo2 has quit [Ping timeout: 272 seconds]
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/06da165c5e4 (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
zakame has joined #nixos
<{^_^}> [nixpkgs] @sternenseemann opened pull request #98158 → pythonPackages.afdko: 3.5.0 → 3.5.1 → https://git.io/JURMk
kahiru has quit [Ping timeout: 265 seconds]
redkahuna has joined #nixos
<{^_^}> [nixpkgs] @sternenseemann opened pull request #98159 → noto-fonts-emoji: unstable-2020-08-20 → 2020-09-16 → https://git.io/JURMG
zeorin has joined #nixos
domogled has joined #nixos
growpotkin has joined #nixos
zakame has quit [Ping timeout: 272 seconds]
<zeorin> Hello all. I'm running NixOS 20.03 and I'm trying to use `fish` from unstable as my login shell.
<zeorin> I have `users.users.zeorin.shell = pkgs.fish` and an override set up
redkahuna has quit [Ping timeout: 240 seconds]
zakame has joined #nixos
<zeorin> `nixpkgs.overlays = [ (self: super: { fish = unstable.fish; }) ];`
<zeorin> and of course `let unstable = import <unstable> { config = { allowUnfree = true; }; };in {```
<iwq> what's the issue?
<iwq> have you logged out and logged in?
<zeorin> patching file create_manpage_completions.pyHunk #1 FAILED at 776.1 out of 1 hunk FAILED -- saving rejects to file create_manpage_completions.py.rejbuilder for '/nix/store/6q0bkrhpk33n5xvh1p1190s03wgwa6y9-fish_patched-completion-generator.drv' failed with exit code 1cannot build derivation
<zeorin> '/nix/store/7kx3ggg8jdhr57w45kp4wi8y65wg0fd7-NetworkManager-fortisslvpn-gnome-1.2.10_fish-completions.drv': 1 dependencies couldn't be built
<zeorin> When I try to switch after setting up the config
<zeorin> Is this due to my setup or is it likely to be a temporary error with the current unstable version of the fish derivation?
<{^_^}> [nixpkgs] @nh2 merged pull request #98140 → ntfy: Switch to python3. Also fixes test failure → https://git.io/JURsJ
<{^_^}> [nixpkgs] @nh2 pushed 2 commits to master: https://git.io/JURM2
<zeorin> If I `nix-env -iA unstable.fish` it works just fine.
alexherbo2 has joined #nixos
nixuser has joined #nixos
<mvnetbiz_> I think when you add it to your shell, it activates the programs.fish NixOS module
<V> uh, so
<V> I think the nixos module is for the normal copy of fish
<mvnetbiz_> That makes it so it builds all the fish completions, and the module uses a different patch than works on fish
<V> ^
<mvnetbiz_> than works on your new fish*
<V> just set users.users.zeorin.shell = unstable.fish
<V> and don't override it
<{^_^}> [nixpkgs] @nh2 opened pull request #98160 → [20.09] ntfy: Switch to python3. Also fixes test failure. → https://git.io/JURMo
redkahuna has joined #nixos
kahiru has joined #nixos
<mvnetbiz_> hydra doesnt build all the fish completions does it?
<{^_^}> [nixos-homepage] @garbas pushed to feature/2020-r/frontpage-banner « improve links »: https://git.io/JURM1
zeorin50 has joined #nixos
redkahuna has quit [Ping timeout: 272 seconds]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
zeorin has quit [Ping timeout: 245 seconds]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Fare has joined #nixos
<zeorin50> V I tried to just set `users.users.zeorin.shell = unstable.fish`, but after logging in again `fish --version` prints `fish, version 3.0.2` (unstable has version `3.1.2`)
<{^_^}> [nixpkgs] @marsam merged pull request #98157 → grpcio-tools: add setuptools dependency → https://git.io/JURPE
<{^_^}> [nixpkgs] @marsam pushed commit from @raboof to master « pythonPackages.grpcio-tools: add setuptools dependency (#98157) »: https://git.io/JURDk
<{^_^}> [nixos-homepage] @garbas pushed to feature/2020-r/frontpage-banner « until we have some nice text show bigger videos »: https://git.io/JURDq
<zeorin50> Would I need to reboot?
redkahuna has joined #nixos
zakame has quit [Quit: WeeChat 2.9]
<mvnetbiz_> I have set programs.fish.enable = true; and the I have user.shell = "/run/current-system/sw/bin/fish" but I don't know why
mmohammadi98127 has joined #nixos
mmohammadi9812 has quit [Read error: Connection reset by peer]
mmohammadi98127 is now known as mmohammadi9812
<ixxie> I tried a simple overlay to bump a package version, but the build is running rediculously long so I must be doing something wrong:
<tobiasBora> Hello, is there a way to remove the quotes in nix-instantiate expressions? I tried nix-instantiate --eval -E 'builtins.fetchTarball {url = https://github.com/NixOS/nixpkgs/archive/925ae0dee63.tar.gz; sha256 = "1g3kkwyma23lkszdvgb4dn91g35b082k55ys8azc7j4s6vxpzmaw"; }';
<zeorin50> I'm still a little new to nix, but I think that the first enables the fish _module_, which will do things like set up the default config files and completions
redkahuna has quit [Ping timeout: 260 seconds]
<tobiasBora> but it writes `"/nix/store/m59d3v89nhp9207hgvf6v21wxq7lhq64-source"
<zeorin50> Whereas the second actually sets the login shell for your user in `/etc/passwd` or its equivalent
<tobiasBora> and I'd like it without the ""
<zeorin50> `pkgs.fish` would likely evaluate to the "hard-coded" path you've got.
<tobiasBora> nix eval has a --raw option, but can't find it here
<mvnetbiz_> right i have it set to the current symlink of whats in environment.systemPackagges but idk why vs setting it to the nix stre :/
<zeorin50> Or rather, that symlink chain that `/run/current-system/sw/bin/fish` points to will be the same as what `pkgs.fish` evaluates to.
<{^_^}> [nixos-homepage] @garbas pushed to feature/2020-r/frontpage-banner « shorted text works better. need to learn how to show things for some resolutions »: https://git.io/JURDw
kleisli_ has quit [Ping timeout: 244 seconds]
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
mmohammadi9812 has quit [Ping timeout: 272 seconds]
redkahuna has joined #nixos
joesventek has quit [Quit: Quit]
mmohammadi9812 has joined #nixos
<evanjs> What's the simplest way to check if I'm on a NixOS system from an expression?
<evanjs> Trying to make some conditionals for configs that might also be read by home-manager on systems that don't run NixOS
ddellacosta has joined #nixos
<{^_^}> [nixos-homepage] @garbas merged pull request #536 → redesign: Add events banner (with NixCon banner) → https://git.io/JURGo
<{^_^}> [nixos-homepage] @garbas pushed 11 commits to feature/2020-redesign: https://git.io/JURDM
<{^_^}> [nixos-homepage] @garbas pushed 0 commits to feature/2020-r/frontpage-banner: https://git.io/JURDD
<xensky> evanjs: (which nixos-rebuild) ?
<evanjs> from a nix expression tho?
<xensky> oh
<ToxicFrog> evanjs: (source /etc/*release && echo $NAME) will be "NixOS"
<ToxicFrog> Oh.
<evanjs> lollll
<zalaare> what is the difference between channels 20.03 and 20.03-small or 20.09 and 20.09-small ?
<xensky> shell mind
<evanjs> (builtins.tryEval system == true) ? :P
<evanjs> don't want to do that to my NixOS systems tho haha
philr has quit [Ping timeout: 240 seconds]
xd1le has quit [Ping timeout: 240 seconds]
<ToxicFrog> zalaare: -small tests a smaller subset of packages, so the tests complete faster and the channel updates more frequently.
<evanjs> was poking around stdenv but not seeing anything I can use. hrm
<ToxicFrog> It's useful on e.g. servers where you want security patches with minimal latency and are ok with a lower binary cache hit rate (i.e. you have a small installed system or lots of build capacity)
redkahuna has quit [Ping timeout: 264 seconds]
<ToxicFrog> It's less useful on laptops/desktops because (IIRC) it doesn't include any GUI/DE stuff, so the -small channel might advance to a version that's fine for headless use but breaks KDE or something.
cantstanya has quit [Ping timeout: 240 seconds]
joesventek has joined #nixos
nikivi has joined #nixos
<zalaare> thanks!
<mvnetbiz_> evanjs, can you do builtins.readfile orwhatever?
<evanjs> mvnetbiz_: 🤔 and read what?
<{^_^}> [nixpkgs] @cust0dian opened pull request #98161 → navi: 2.10.0 -> 2.12.0 → https://git.io/JURDh
cantstanya has joined #nixos
<mvnetbiz_> /etc/NIXOS but if its not tthere it errors
<mvnetbiz_> evanjs, builtins.readDir /etc ? NIXOS
cr4y1_ has quit [Remote host closed the connection]
<evanjs> gah why does tryEval never work how I want it to lol
<zeorin50> I fixed my fish issue.
xd1le has joined #nixos
<evanjs> or is there something else I should be using to handle the error?
mariatsji has quit [Remote host closed the connection]
<mvnetbiz_> just do readDir ^
<mvnetbiz_> builtins.readDir /etc ? NIXOS
<mvnetbiz_> returns true if /etc/NIXOS exists
<zeorin50> First I tried to disable the stable fish module and import the unstable one. The unstable module relied on some nixos option that didn't exist yet in 20.03.
<evanjs> ohhh I misread your initial statement lol
<mvnetbiz_> Initially I did try readFile, that was my 2nd statement
<evanjs> didn't parse the optional haha
nixuser has quit [Read error: Connection reset by peer]
<zeorin50> Setting the user shell to `unstable.fish` and actually manually also including it in `environment.systemPackages` as `unstable.fish` did the trick.
<iwq> how often is the nixpkgs-unstable branch updated?
<evanjs> seeing true and false on the expected systems. sweet!
<evanjs> mvnetbiz_++
<{^_^}> mvnetbiz_'s karma got increased to 2
zeorin50 has quit [Remote host closed the connection]
mariatsji has joined #nixos
cosimone has quit [Quit: Quit.]
mariatsji has quit [Remote host closed the connection]
<simonpe^^> I'm using a binary cache that is inside my clients VPN, when I'm not connected to the VPN Nix basically breaks completely because it cannot reach the server. Whan can I do about this?
cosimone has joined #nixos
<mvnetbiz_> iwq, https://status.nixos.org/
mariatsji has joined #nixos
<simonpe^^> Keep in mind I'm pushing nix to the clients ubuntu machines using ansible and it needs to be completely transparent to the users
<mvnetbiz_> I think when it's green it updates the channel
cfricke has quit [Quit: WeeChat 2.9]
cosimone has quit [Client Quit]
alp_ has joined #nixos
bahamas has joined #nixos
bahamas has joined #nixos
bahamas has quit [Changing host]
hyper_ch2 has joined #nixos
superherointj has joined #nixos
mariatsji has quit [Ping timeout: 244 seconds]
nDuff has joined #nixos
<lordcirth> simonpe^^, what do you want the fallback behaviour to be? Going to cache.nixos.org instead?
blackriversoftwa has quit [Ping timeout: 240 seconds]
blackriversoftwa has joined #nixos
<{^_^}> [nixos-homepage] @garbas pushed to feature/2020-redesign « show asciinema-player more as part of the page »: https://git.io/JURyM
<xensky> anyone have experience with setting xrandr/display config? i tried using xrandrHeads and it causes X to not startup
cosimone has joined #nixos
cosimone_ has joined #nixos
mallox has quit [Quit: WeeChat 2.9]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/eb6e2ac2c03 (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
azure has joined #nixos
azure is now known as Guest45000
zanc has quit [Ping timeout: 256 seconds]
cosimone_ has quit [Quit: Quit.]
<{^_^}> [nixos-homepage] @garbas pushed to feature/2020-redesign « pad with zero in counter when < 9 »: https://git.io/JURS2
<{^_^}> [nixpkgs] @drewrisinger opened pull request #98162 → pythonPackages.pandas: 1.1.1 -> 1.1.2 & cleanup → https://git.io/JURS9
<simonpe^^> lordcirth: yes please
cosimone has quit [Quit: Leaving]
cosimone has joined #nixos
superherointj has quit [Quit: Leaving]
fendor__ has joined #nixos
<jumper149> I am trying to host nextcloud on NixOS-20.03 but I'm running into some problems: nextcloud-setup.service fails with `Nextcloud is not installed - only a limited number of commands available`, `Command "upgrade" is not defined`
zalaare has quit [Remote host closed the connection]
fendor_ has quit [Ping timeout: 256 seconds]
<lordcirth> jumper149, nextcloud 19?
<tobiasBora> jumper149: it usually occurs when you have an issue during install. You need to clean the folder and restart
* tobiasBora is searching for the issue
<jumper149> tobiasBora: You are saying it doesnt have anything to do with nix?
<tobiasBora> (in my case it was because the secret file had bad permission during the first install I think)
<lordcirth> It should have done "occ maintenance:install" first
mariatsji has joined #nixos
<lordcirth> Probably that failed or there is a flawed conditional for it
<tobiasBora> jumper149: well, it does have a link with nix, in the sense that nix tries to do everything in one go, and if the password files has wrong permission (which is not surprising), it fails. Here is the issue: https://github.com/NixOS/nixpkgs/issues/48045
dm85 has quit [Quit: WeeChat 2.7.1]
<{^_^}> #48045 (by dermetfan, 1 year ago, closed): nextcloud-setup (occ): nextcloud is not installed
<{^_^}> [nixos-search] @garbas pushed to fix-193 « in older channels email was conditional »: https://git.io/JUR9K
<{^_^}> [nixos-search] @garbas opened pull request #194 → in older channels email was conditional → https://git.io/JUR9i
<jumper149> points to -> services.nextcloud.package
rsa has joined #nixos
erasmas has joined #nixos
<jumper149> It says it has no default value given.
<tobiasBora> jumper149: it's your first install?
<jumper149> tobiasBora: Yeah
<{^_^}> [nixpkgs] @yanganto opened pull request #98163 → hime: init → https://git.io/JUR9D
<tobiasBora> jumper149: if you don't have valuable data, try "sudo rm -rf /var/lib/nextcloud", and then one more "nixos-rebuild switch"
<lordcirth> jumper149, well you will need to set your db parameters, yeah
<jumper149> tobiasBora: Ok when I use `nixos-option services.nextcloud.package` it says nextcloud-18.0.7
<tobiasBora> jumper149: what's the issue? Too old? If may come from the fact that you have a stateVersion with old values.
mariatsji has quit [Ping timeout: 272 seconds]
<jumper149> tobiasBora: That's possible I tried a few months ago already
<{^_^}> [nixos-search] @garbas merged pull request #194 → in older channels email was conditional → https://git.io/JUR9i
<{^_^}> [nixos-search] @garbas pushed to master « in older channels email was conditional (#194) »: https://git.io/JURHU
<{^_^}> [nixos-search] @garbas pushed 0 commits to fix-193: https://git.io/JURHT
<jumper149> nuking /var/lib/nextcloud solved the issue :)
eoli3n_ has joined #nixos
<arianvp> err wat
<arianvp> nix-collect-garbage fails because my disk is full
<arianvp> with some error in sqlite
<arianvp> .-.
<arianvp> what now
<arianvp> this box _only_ has stuff in /nix/store and nothing else
<abathur> oof
<tobiasBora> jumper149: here is my conf http://paste.debian.net/1164188 you may be inspired.
<arianvp> ran it a second time and now it works
<arianvp> but jeesh that's scary
<arianvp> we shouldn't epically fail in this scenario :/
<tobiasBora> jumper149: but yes, for me the first step is to make sure you don't have a broken config (bad password file permission...) and then rm -rf /var/lib/nextcloud, and then rebuild the system
<abathur> arianvp: huh, wonder why a second run worked
<arianvp> my buffer isnt large enough to find what the original error message was unfortunately
arianvp has quit [Quit: WeeChat 2.7.1]
arianvp has joined #nixos
<{^_^}> [nixpkgs] @ehmry merged pull request #97394 → dnscontrol: 3.2.0 -> 3.3.0, add me as maintainer → https://git.io/JUZdi
<{^_^}> [nixpkgs] @ehmry pushed 4 commits to master: https://git.io/JURHN
domogled has quit [Quit: domogled]
kenran has quit [Ping timeout: 272 seconds]
wnklmnn has quit [Quit: Leaving]
proofofkeags has joined #nixos
mariatsji has joined #nixos
fendor has joined #nixos
<evanjs> abathur: arianvp eh that's usally what I end up doing lol. Sometimes multiple runs work, sometimes I actually need to delete something outside the store :P
fendor__ has quit [Ping timeout: 272 seconds]
bahamas has quit [Ping timeout: 256 seconds]
<{^_^}> [nixos-search] @garbas pushed to fix-187 « By mistake the default analyzer was used for query »: https://git.io/JURQC
<{^_^}> [nixos-search] @garbas opened pull request #195 → By mistake the default analyzer was used for query → https://git.io/JURQ8
<{^_^}> [nixpkgs] @Zimmi48 opened pull request #98164 → ocamlPackages.zarith: 1.9 -> 1.10 → https://git.io/JURQB
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
nikivi has quit [Client Quit]
nikivi has joined #nixos
zebrag has joined #nixos
inkbottle has quit [Ping timeout: 260 seconds]
Maxdamantus has quit [Ping timeout: 240 seconds]
<{^_^}> [nixos-search] @garbas pushed to master « By mistake the default analyzer was used for query (#195) »: https://git.io/JURQD
<{^_^}> [nixos-search] @garbas merged pull request #195 → By mistake the default analyzer was used for query → https://git.io/JURQ8
<{^_^}> [nixos-search] @garbas pushed 0 commits to fix-187: https://git.io/JURQS
nikivi has quit [Client Quit]
nikivi has joined #nixos
Maxdamantus has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
civodul has quit [Read error: Connection reset by peer]
civodul has joined #nixos
<{^_^}> [nixos-homepage] @ajs124 opened pull request #537 → add Helsinki Systems → https://git.io/JUR7O
megfault has joined #nixos
<lordcirth> Trying to add a custom flake to my system flake, and "nixos-rebuild build" throws "The option `inputs' defined in `<unknown-file>' does not exist." Except the only place I'm using "inputs" is right next to the existing ones that worked fine
<lordcirth> And how is there an unknown file?
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
cole-h has joined #nixos
arjen-jonathan has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @Gerschtli opened pull request #98165 → Update jetbrains products → https://git.io/JUR7w
Rumjump has joined #nixos
Rumjump has left #nixos [#nixos]
joesventek has quit [Quit: Quit]
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
joesventek has joined #nixos
nikivi has joined #nixos
nikivi has quit [Client Quit]
nikivi has joined #nixos
<jumper149> tobiasBora++
<{^_^}> tobiasBora's karma got increased to 2
brano543 has joined #nixos
spease has joined #nixos
<spease> Anybody know how to fix this error?
<spease> "/nix/store/ddm1y988d42mxmz62fzg8xz3ladxz8vq-stdenv-darwin/setup: line 90: cd: too many arguments"
<cole-h> regnat++ Thanks for reviewing that PR :) I'll see if I can't come up with a good solution, thanks to your help.
<{^_^}> regnat's karma got increased to 3
<brano543> Good evening. Can anyone please tell me how to get path to cross compiler? I would like to combine Nix features with Conan as Nix doesn't support Windows. I would like to create a profile for Conan which needs path to MingW compiler. I am unable to get the path though https://pastebin.pl/view/1bf8c35a
<cole-h> regnat: And super-thanks for the example code -- it's been a long time since I've done anything quite so complex in C++ :^)
<brano543> Could any good soul assist please?
<spease> brano543 you might try nix repl and introspect into the package attributes (it has autocomplete)
<spease> brano543 do you know the package name you are trying to get the path to?
fendor has quit [Remote host closed the connection]
<brano543> spease: that is the problem that I am not sure how exactly should be the package called. I have consulted the documentation and it says only that you should use crossSystem and you would have correct compiler while running mkDerivation. When I try to reference this guy it tells me it is Windows specific and refuses to build.
<spease> brano543 maybe try looking at the 'cc' package, I believe that gets replaced when using the cross-compiler but I'm not sure.
superherointj has joined #nixos
<ixxie> So I made an overlay to libwacom https://github.com/NixOS/nixpkgs/blob/2b7c0dcdaab946153b0eaba5f2420f15ea27b0d6/pkgs/development/libraries/libwacom/default.nix like this https://gist.github.com/ixxie/118160f3ed79e6cc7b7cb4adca3d7424 but the build is taking hours and I just wanna test the next version (1.5)
<ixxie> I'm wondering if I should make my overlay fetch the binary instead of building from source
<ixxie> but I am not sure how
<brano543> spease: Can you help me how do I use that nix repl to execute this so I can search within that cross packages as you suggested? pkgsCross = import sources.nixpkgs { crossSystem = (import sources.nixpkgs { }).lib.systems.examples.mingwW64; };
D_ has joined #nixos
<brano543> spease: I have tried like this but it doesn't work. nix repl '<nixpkgs> {crossSystem = (import <nixpkgs/lib>).systems.examples.mingwW64}'
MtotheM has joined #nixos
jDally987 has joined #nixos
<cole-h> regnat: I think one problem with the suggested approach is the fact that libutil has no way to access the global `settings` (e.g. to check `settings.logFormat`), unless my inexperience is getting to me.
<cole-h> regnat: We'd then have to link libmain into libutil (99% sure that is totally undesirable) for access to the global `settings`?
civodul has quit [Ping timeout: 244 seconds]
<brano543> spease: Thank you so much for the idea ! This variation worked nix repl '<nixpkgs>' --arg crossSystem '(import <nixpkgs/lib>).systems.examples.mingwW64'. Now I can see the path is pkgsCross.migwW64, but whenever I try to use the same in derivation I get error.
Pwnna has quit [Quit: Bye]
spease has quit [Remote host closed the connection]
Pwnna has joined #nixos
qqqqqq has joined #nixos
<qqqqqq> Proof that Jesus worshiped one God same as muslims do: - Jesus identifying the commandment: "The Lord our God is One Lord" (Mark 12:29) to be the most important of all; As stated in (Mark 12:29): Jesus was asked "Which commandment is the most important of all?" Jesus replied, "This is the most important: Hear O Israel, the Lord our God is One Lord" (Mark 12:29) as in Quran: {Say He is God the one (Allah)} [Quran chapter 112].
<qqqqqq> so the above qoute(mark12:29) is a clear evidence that Jesus was directing us towards monothiesm belief and to consider it as the very first of all commandments; also here is the firsts of the The Ten Commandments(to moses) which is similar to what he was directing us towards: [ 1 - I am the LORD your God who brought you out of the land of Egypt, out of the house of bondage. You shall have no other gods before Me.]
qqqqqq has left #nixos [#nixos]
<justanotheruser> thanks
<simpson> As the saying goes, "one person's modus ponens is another's modus tollens"
<jDally987> lmao^
morr has quit [Quit: WeeChat 2.3]
<cransom> and today i learned about MPMT.
<jDally987> hey so where is $XDG_DATA_DIRS defined
<jDally987> cuz I'm trying to install flatpak apps and it wants me to add stuff to the path there
<jDally987> not sure if it's system-level somewhere or per user
<V> jDally987: nixos/modules/programs/environment.nix
<V> if you want to set env vars, look in environment.*variables
morr has joined #nixos
<V> there's profile-relative env vars
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @blitz opened pull request #98167 → cpuid: init at 20200427 → https://git.io/JURd0
Mateon1 has quit [Quit: Mateon1]
Mateon1 has joined #nixos
<jDally987> V ah great thanks
arjen-jonathan has joined #nixos
<jDally987> so that would be profile-specific then?
spease has joined #nixos
<V> well, if you want stuff relative to their $HOME or such
<jDally987> looks like XDG_DATA_DIRS is under environment.profileRelativeSessionVariables
<V> ah
<V> I don't remember what exactly it uses, I've just been in that file enough times to know where it is :)
<jDally987> yeah I'm just not completely sure how flatpak is supposed to be set up tbh
<jDally987> or really where any nix-installed package is supposed to go (system vs user)
<V> there's a flatpak module
<V> see `man configuration.nix`
<jDally987> I did actually do flatpak under the global configuration.nix
<jDally987> yup
<jDally987> so would that cause problems if I stuck whatever it wanted onto the end of DATA_DIRS in the "profileRelative" vars
Darkmatter66 has quit [Ping timeout: 260 seconds]
<V> jDally987: look in $XDG_DATA_DIRS, they're already set - you can put stuff into /etc/profiles/per-user/<username>/share
<jDally987> I guess the env var itself is global and thus seen by everyone
<V> and such
<jDally987> o well it was just telling me this when I tried to `flatpak install kdeconnect/<whatever>`
<jDally987> ```Note that the directories '/var/lib/flatpak/exports/share''/home/jdnixx/.local/share/flatpak/exports/share'are not in the search path set by the XDG_DATA_DIRS environment variable, soapplications installed by Flatpak may not appear on your desktop until thesession is restarted.```
<V> ah
Darkmatter66 has joined #nixos
<V> see, .local/share is covered by $XDG_DATA_HOME
<V> (or, that's the default for it)
igghibu has joined #nixos
<V> so /home/jdnixx/.local/share/flatpak/exports/share should be fine IMO? unless flatpak explicitly ignores those
<jDally987> am I supposed to have an $XDG_HOME on a fresh nixos installation?
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
<jDally987> not seeing it unless I gotta be root or something
orivej has joined #nixos
nikivi has joined #nixos
<jDally987> or $XDG_DATA_HOME sorry
<V> jDally987: XDG_DATA_HOME falls back to $HOME/.local/share
<V> much like $XDG_CONFIG_HOME falls back to $HOME/.config
<V> legacy :)
<jDally987> oh lol
<V> so much legacy
<V> I don't have either set on my system
<V> But the canonical way to refer to them is by those names
Darkmatter66_ has joined #nixos
<V> because you *can* override where data/config/etc go
<jDally987> well yeah I don't have a _DATA_HOME var or ~/.local/share under any env var as far as I can tell
<V> (and I do myself, in places)
<V> that's okay!
<V> I don't think that message is fatal
<{^_^}> [nixpkgs] @gnidorah opened pull request #98168 → update some packages I maintain → https://git.io/JURdr
<V> It's just saying that you might need to relogin to see some apps
Darkmatter66 has quit [Ping timeout: 240 seconds]
<jDally987> yeah I'm just trying to figure where I should append it
<jDally987> oh ok
<jDally987> will it still add the .desktop files in the right places though
rihards has quit [Quit: rihards]
knupfer has joined #nixos
rihards has joined #nixos
puckipedia has joined #nixos
puck has quit [Ping timeout: 256 seconds]
<V> I've no idea, I've not used flatpak
<V> someone else would have to answer that
davidv7 has joined #nixos
Darkmatter66 has joined #nixos
puckipedia is now known as puck
<{^_^}> [nixpkgs] @superherointj opened pull request #98169 → dmidecode version bump to 3.2.8 → https://git.io/JURdM
Darkmatter66_ has quit [Ping timeout: 260 seconds]
zupo has joined #nixos
ransom has quit [Quit: Textual IRC Client: www.textualapp.com]
<regnat> cole-h: Good point. I think we can just move makeDefaultLogger to libmain or libstore
<LambdaDuck> How do I set a global binary cache for all users on non-nixos nix? It seems like only root reads from /etc/nix/nix.conf.
xd1le has quit [Read error: Connection reset by peer]
<cole-h> regnat: Yeah, that's what I'm in the process of doing right now (and removing loggers.hh from libmain)
<cole-h> (so that I can name it "loggers.{cc,hh}" in libutil :D)
xd1le has joined #nixos
mariatsji has quit [Remote host closed the connection]
<cole-h> bqv: ping
brano543 has quit [Remote host closed the connection]
jDally987 has quit [Ping timeout: 245 seconds]
gthm has quit [Ping timeout: 256 seconds]
civodul has joined #nixos
alp_ has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @Lassulus merged pull request #98018 → matomo: 3.14.0 -> 3.14.1 → https://git.io/JU4VU
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JURF6
mariatsji has joined #nixos
<regnat> cole-h: Nice 👍 that sounds pretty darn cool:)
Darkmatter66 has quit [Ping timeout: 272 seconds]
<cole-h> I'm a little unhappy with adding `createDefaultLogger()` and friends to globals.{cc,hh}, but I guess it's better than libstore depending on libmain x)
<cole-h> regnat++ Thanks again for the extremely actionable suggestions <3
<{^_^}> regnat's karma got increased to 4
Darkmatter66 has joined #nixos
cosimone has quit [Quit: Quit.]
cosimone has joined #nixos
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
kenran has joined #nixos
nikivi has quit [Client Quit]
saschagrunert has quit [Quit: Leaving]
nikivi has joined #nixos
<NieDzejkob> how can I use $out in makeFlags?
<V> $(out)
<V> like you would in make itself
<NieDzejkob> thanks, that worked
<NieDzejkob> V++
<{^_^}> V's karma got increased to 6
gv has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @liff opened pull request #98170 → [20.09] wordgrinder: fix build → https://git.io/JURbE
kenran has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @bjornfor merged pull request #98105 → kicad: remove gettext from buildInputs, add to nativeBuildInputs → https://git.io/JUBA3
<{^_^}> [nixpkgs] @bjornfor pushed commit from @hannesweisbach to master « kicad: remove gettext from buildInputs, add to nativeBuildInputs »: https://git.io/JURbu
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
joesventek has quit [Quit: Quit]
joesventek has joined #nixos
<{^_^}> [nixpkgs] @superherointj closed pull request #98169 → dmidecode version bump to 3.2.8 → https://git.io/JURdM
<cole-h> regnat: Hmm... How do I register e.g. `makeProgressBar()`? AFAIK, C/++ doesn't allow top-level function calls, like you suggest...
joesventek has quit [Client Quit]
joesventek has joined #nixos
jtle has joined #nixos
alp_ has joined #nixos
ris has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
igghibu has quit [Ping timeout: 256 seconds]
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
<{^_^}> [nixpkgs] @Profpatsch closed pull request #96706 → noto-fonts: use poetry2nix for python build dependencies → https://git.io/JUqJf
<regnat> cole-h: Oh sorry, you need to bind it to a static variable
<regnat> static _register = registerLogger(...);
<regnat> (And you can put it in the .cc file so that it doesn't pollute the global namespace)
waleee-cl has joined #nixos
<regnat> There's also a OnStartup class in the Nix repo if you prefer. I don't think it does anything more than that, but it's a bit more explicit
fendor has joined #nixos
jDally987 has joined #nixos
ixxie has quit [Ping timeout: 272 seconds]
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
<leotaku> Does anyone here know, is it possible to get the store path/derivation of a Flake input as a Flake output?
nikivi has quit [Client Quit]
zupo has joined #nixos
nikivi has joined #nixos
n9nes has quit [Quit: ZNC 1.8.2 - https://znc.in]
joesventek has quit [Quit: Quit]
nikivi has quit [Client Quit]
n9nes has joined #nixos
joesventek has joined #nixos
<cole-h> regnat: Struggling with the lambda -- isn't `std::function<void(Logger*)>` saying it's a function that returns void and takes in a logger as an argument? Is that what I really want?
pingiun has quit [Quit: Textual IRC Client: www.textualapp.com]
<cole-h> (I only ask, because `could not convert ‘<lambda closure object>nix::<lambda()>{}’ from ‘nix::<lambda()>’ to ‘std::function<void(nix::Logger*)>’`)
<cole-h> This is when I miss Rust's error messages 😬 Sorry to keep pinging you. (At this point, you could probably write this yourself haha)
joesventek has quit [Client Quit]
joesventek has joined #nixos
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
<regnat> cole-h: Hm, I might have inverted the arguments, never remember whether it's <arg(return)> or <return(arg)>
<regnat> (sorry, my review isn't that actionnable after all 🙃)
sigmundv_ has quit [Read error: Connection reset by peer]
<cole-h> Hahaha, it's all good. Looks like OnStartup is the only way to go, however -- I get incomplete type errors when trying `static auto l1 = registerLogger(....);`
<{^_^}> [nixpkgs] @Lassulus merged pull request #97113 → duckdb: 0.1.8 -> 0.2.1 → https://git.io/JU39e
<{^_^}> [nixpkgs] @Lassulus pushed 3 commits to master: https://git.io/JURAt
bahamas has joined #nixos
sigmundv_ has joined #nixos
<cole-h> (btw, yeah, order was swapped -- std::function<Logger*()> seems to work :D)
cognemo has joined #nixos
<{^_^}> [nixpkgs] @Lassulus merged pull request #97111 → dolt: 0.18.3 -> 0.19.0 → https://git.io/JU3yQ
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JURAZ
spease has quit [Remote host closed the connection]
<acowley> I'm trying to package a Python script that creates a Gtk GUI, but ending up with a `ValueError: Namespace Gtk not available`.
<acowley> The script doesn't have a setup.py, so I tried writing my own installPhase that just copies the script to $out/bin
joesventek has quit [Quit: Quit]
<acowley> It gets there along with a wrapper that sets PATH, but then I guess gi is failing.
<{^_^}> [nixpkgs] @superherointj opened pull request #98171 → dmidecode version bump to 3.2.8 → https://git.io/JURAB
<acowley> Does any of that ring any bells for anyone?
joesventek has joined #nixos
<{^_^}> [nixpkgs] @rycee opened pull request #98172 → cloc: 1.86 -> 1.88 → https://git.io/JURAz
<{^_^}> [nixpkgs] @superherointj opened pull request #98173 → [20.09] dmidecode version bump to 3.2.8 → https://git.io/JURAg
n9nes has quit [Quit: ZNC 1.8.2 - https://znc.in]
dbmikus has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @thiagokokada opened pull request #98174 → dart: Fix dart2native by patching all ELFs → https://git.io/JURAV
supercoven has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @superherointj opened pull request #98175 → dmidecode version bump to 3.2.8 → https://git.io/JURAw
<{^_^}> [nixpkgs] @Lassulus merged pull request #97104 → cutelyst: 2.11.0 -> 2.12.0 → https://git.io/JU3MZ
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JURAo
<acowley> Huh, in a nix-shell -A for that derivation, the script loads and runs. So I guess the wrapper I'm getting isn't quite right. In the nix-shell I run into `TLS/SSL support not available; install glib-networking`, even though that is in the propagatedBuildInputs.
<acowley> So maybe this is hopeless.
<acowley> The alternative is to do a buildFHSUserEnv for the whole thing
stiell has quit [Ping timeout: 260 seconds]
<mvnetbiz_> try putton that in buildInputs too
knupfer has quit [Ping timeout: 240 seconds]
<acowley> mvnetbiz_: Same error
<acowley> The thing I'm trying to run is this: https://github.com/dlenski/gp-saml-gui
sangoma has joined #nixos
mallox has joined #nixos
stiell has joined #nixos
redkahuna has joined #nixos
CyberManifest has quit [Quit: Leaving...]
<jasom> When do non-legacy zfs mounts happen at boot time?
<gchristensen> I don't think it is well defined
<jasom> gchristensen: legacy mountpoints it is!
ixxie has joined #nixos
<immae_> jasom: it’s a systemd service
<{^_^}> [nixpkgs] @Lassulus merged pull request #97099 → crawl: 0.25.0 -> 0.25.1 → https://git.io/JU3PG
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JURAQ
<immae_> zfs-mount.service
<immae_> so it "may" happen quite late (depending on the dependency tree)
fendor has quit [Remote host closed the connection]
<xensky> i want to enable i3Support in polybar, but i don't know where i'm supposed to set it in my config. it's described here in polybar's nix: https://github.com/NixOS/nixpkgs-channels/blob/nixos-unstable/pkgs/applications/misc/polybar/default.nix
immae_ has quit [Quit: WeeChat 2.9]
<acowley> Huh, yuck. The wrapped script looks like it should be doing things correctly, so gi failing to load Gtk is troubling. The failure of the nix-shell execution to find glib-networking feels like yet more load path trouble.
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #96693 → adobe-reader: add gkd-pixbuf-xlib based on issue: #96683 → https://git.io/JUtxn
<{^_^}> [nixpkgs] @Ericson2314 pushed 2 commits to master: https://git.io/JURAx
immae has joined #nixos
<{^_^}> [nix] @roberth opened pull request #4030 → Overhaul wopAddToStore → https://git.io/JURAh
mariatsji has quit [Remote host closed the connection]
<lordcirth> Why is it that "nix flake update" does nothing, but "rm flake.lock; nix flake update" updates? Isn't that what it's supposed to do?
alp has joined #nixos
alp_ has quit [Ping timeout: 272 seconds]
fendor has joined #nixos
<NieDzejkob> A program I'm packaging complains about: (sameboy:27805): GLib-GIO-ERROR **: 20:27:57.237: No GSettings schemas are installed on the system
<NieDzejkob> This is followed by a SIGTRAP in gtk logging code, so I'd assume that this is important. Any idea how to fix this?
<{^_^}> [nixpkgs] @Lassulus merged pull request #97090 → clevis: 13 -> 14 → https://git.io/JU3wh
<cole-h> regnat: Hm. Do you have any idea why the vector would be emptying itself? If I breakpoint `registerLogger`, I can see all the loggers being registered, but when I enter `makeDefaultLogger`, registeredLoggers is of size and length 0...
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JURxL
rajivr has quit [Quit: Connection closed for inactivity]
<NieDzejkob> cole-h: maybe try using a watchpoint?
<cole-h> Maybe it's because I'm using `make_shared`?
joesventek has quit [Quit: Quit]
<symphorien[m]> NieDzejkob: use wrapGAppsHook
bennofs has quit [Ping timeout: 264 seconds]
joesventek has joined #nixos
bennofs has joined #nixos
<{^_^}> nix#3781 (by FRidh, 10 weeks ago, open): flakes: `nix flake update` without arguments does not update
<NieDzejkob> symphorien[m]: ah, now I see that I should've consulted the nixpkgs section on common issues :/
<lordcirth> leotaku, thanks!
<{^_^}> [nixpkgs] @Lassulus merged pull request #97088 → checkstyle: 8.35 -> 8.36 → https://git.io/JU3Vj
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JURxC
<NieDzejkob> Turns out Nix has much better docs than Guix (:
imtrashyoutoo has joined #nixos
redkahuna has quit [Ping timeout: 272 seconds]
<imtrashyoutoo> leaks leaks leaks https://discord.gg/qdEU9AG
imtrashyoutoo has quit [Remote host closed the connection]
<lordcirth> NSFW^
<symphorien[m]> I'm surprised you are happy with nix's doc
<NieDzejkob> leeks leeks leeks https://www.youtube.com/watch?v=duPJqfKiA78
<symphorien[m]> (well nixpkgs's here)
<mvnetbiz_> acowley, what is your expression?
ixxie has quit [Remote host closed the connection]
hoxtonhopper has joined #nixos
joesventek has quit [Client Quit]
joesventek has joined #nixos
<{^_^}> [nixpkgs] @Lassulus merged pull request #97085 → checksec: 2.2.2 -> 2.2.3 → https://git.io/JU32g
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JURxg
<{^_^}> [nixpkgs] @rycee pushed to master « cloc: 1.86 -> 1.88 »: https://git.io/JURxr
<{^_^}> [nixpkgs] @rycee merged pull request #98172 → cloc: 1.86 -> 1.88 → https://git.io/JURAz
sangoma has quit [Ping timeout: 256 seconds]
stiell has quit [Ping timeout: 272 seconds]
<NieDzejkob> symphorien[m]: I added gsettings-desktop-schemas and wrapGAppsHook to buildInputs and the wrapper only sets GIO_EXTRA_MODULES (no XDG_DATA_DIRS), the error message persists
redkahuna has joined #nixos
<symphorien[m]> wrapGAppsHook goes to nativeBuildInputs
<symphorien[m]> is it a python package ?
<symphorien[m]> if so add `strictDeps = false;`
irccat42 has joined #nixos
stiell has joined #nixos
<NieDzejkob> symphorien[m]: not a python package, it's written in C. I moved the hook to nativeBuildInputs, and now the GIO_EXTRA_MODULES wrapping line is repeated. XDG_DATA_DIRS is still not set, the error persists
<NieDzejkob> the application loads gtk with dlopen, could that be relevant?
<{^_^}> [nixpkgs] @vcunat pushed 2 commits to master: https://git.io/JURxN
<cole-h> regnat: `static registeredLoggers` doesn't appear to work cross-lib (or something), so `extern` it is :(
<{^_^}> [nixpkgs] @vcunat merged pull request #97577 → linuxPackages.exfat-nofuse: 2019-09-06 -> 2020-04-15 → https://git.io/JUcQB
jDally987 has quit [Ping timeout: 245 seconds]
irccat42 has left #nixos [#nixos]
<jtojnar> NieDzejkob: maybe also try adding glib
<jtojnar> dlopen should not matter, as long the environments get passed to the program
sangoma has joined #nixos
<NieDzejkob> okay, I was wondering if maybe it's trying to detect usage of gtk with dynamic linking data
jDally987 has joined #nixos
<NieDzejkob> adding glib made it set the env var, now the error's different and it's not fatal...
<NieDzejkob> failed to commit changes to dconf: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name ca.desrt.dconf was not provided by any .service files
<jtojnar> then you are missing the dconf systemd service on your system
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/594723985ce (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
knupfer has joined #nixos
n9nes has joined #nixos
<{^_^}> [nixpkgs] @minijackson opened pull request #98176 → nixos/jellyfin: add some systemd security options → https://git.io/JURpE
<{^_^}> [nixpkgs] @Lassulus merged pull request #97037 → crcpp: init at 1.0.1.0 → https://git.io/JU3Ts
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JURpu
bahamas has quit [Ping timeout: 272 seconds]
redkahuna has quit [Ping timeout: 272 seconds]
kenran has joined #nixos
kenran has quit [Ping timeout: 260 seconds]
jDally987 has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @Lassulus merged pull request #97018 → openocd: 0.10.0 -> 2020-09-02 → https://git.io/JUOSn
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JURhv
<{^_^}> [nixos-homepage] @samueldr pushed 2 commits to feature/2020-redesign: https://git.io/JURhU
tobeportable has joined #nixos
j__ has joined #nixos
maxdevjs has joined #nixos
<{^_^}> [nixos-homepage] @samueldr pushed to feature/2020-redesign « Revert "improve links"; causes misc. issues »: https://git.io/JURh3
<{^_^}> [nixos-homepage] @samueldr pushed to feature/2020-r/redo-improve-links « Redo "improve links" »: https://git.io/JURhc
redkahuna has joined #nixos
maxdevjs has quit [Remote host closed the connection]
<{^_^}> [nixos-homepage] @samueldr opened pull request #538 → Re-do "improve links" → https://git.io/JURh2
redkahuna has quit [Ping timeout: 272 seconds]
mariatsji has joined #nixos
<{^_^}> [nixpkgs] @NieDzejkob opened pull request #98177 → sameboy: init at 0.13.6 → https://git.io/JURhP
alexherbo2 has quit [Quit: Ping timeout (120 seconds)]
redkahuna has joined #nixos
mariatsji has quit [Ping timeout: 244 seconds]
alexherbo2 has joined #nixos
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #87912 → services/calibre-server: Allow multiple libraries, add "user" and "group" options → https://git.io/JfRMj
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to master: https://git.io/JURhx
redkahuna has quit [Ping timeout: 260 seconds]
tilcreator has joined #nixos
<{^_^}> Channel nixos-20.03 advanced to https://github.com/NixOS/nixpkgs/commit/5177665caf1 (from 23 hours ago, history: https://channels.nix.gsc.io/nixos-20.03)
hoxtonhopper has quit [Quit: Konversation terminated!]
arjen-jonathan has quit [Ping timeout: 244 seconds]
mmohammadi9812 has quit [Quit: I quit (╯°□°)╯︵ ┻━┻]
acarrico has joined #nixos
<{^_^}> [nixpkgs] @f4814 opened pull request #98178 → razergenie: 0.8.1 -> 0.9.0 → https://git.io/JURju
redkahuna has joined #nixos
lsix has quit [Ping timeout: 244 seconds]
acarrico has quit [Client Quit]
acarrico has joined #nixos
joesventek has quit [Quit: Quit]
joesventek has joined #nixos
joesventek has quit [Client Quit]
redkahuna has quit [Ping timeout: 265 seconds]
joesventek has joined #nixos
<cole-h> regnat: Unfortunately, I don't think your "listLogFormats" idea will work -- in the generated nix.conf.5 manpage, bar and bar-with-logs won't show up because they're declared outside of libutil :( (since progress-bar is also outside libutil)
mallox has quit [Quit: WeeChat 2.9]
<{^_^}> [nixos-homepage] @garbas pushed to feature/2020-redesign « use gutter and revert pane button change »: https://git.io/JURjx
ixxie has joined #nixos
redkahuna has joined #nixos
<cole-h> At least, not in globals.hh (which impacts the generation of the manpage)
<{^_^}> [nixpkgs] @superherointj closed pull request #98175 → [20.03] dmidecode version bump to 3.2.8 → https://git.io/JURAw
knupfer has quit [Quit: knupfer]
knupfer1 has joined #nixos
Fare has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @superherointj closed pull request #98173 → [20.09] dmidecode version bump to 3.2.8 → https://git.io/JURAg
redkahuna has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @samlich opened pull request #98179 → dvdbackup: add dvdread-6.1 patch → https://git.io/JU0eG
Fare has joined #nixos
knupfer1 is now known as knupfer
sangoma has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @superherointj closed pull request #98171 → dmidecode version bump to 3.2.8 → https://git.io/JURAB
<{^_^}> [nixpkgs] @vcunat pushed to master « linuxPackages.exfat-nofuse: lazier assertion (/cc #97577) »: https://git.io/JU0e4
redkahuna has joined #nixos
<{^_^}> [nixpkgs] @Lassulus merged pull request #96931 → netbeans: 12.0 -> 12.1 → https://git.io/JUYLN
<{^_^}> [nixpkgs] @Lassulus pushed 2 commits to master: https://git.io/JU0eo
redkahuna has quit [Ping timeout: 256 seconds]
nDuff has quit [Quit: zzz]
knupfer has quit [Quit: knupfer]
redkahuna has joined #nixos
knupfer has joined #nixos
simonpe^^ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @mlvzk opened pull request #98180 → csview: init at 0.3.1 → https://git.io/JU0vI
<{^_^}> [nixpkgs] @zowoq opened pull request #98181 → miniserve: 0.8.0 -> 0.9.0 → https://git.io/JU0vt
redkahuna has quit [Ping timeout: 272 seconds]
silver-fox84 has joined #nixos
mmk2410 has quit [Quit: ERC (IRC client for Emacs 27.1)]
thc202 has quit [Ping timeout: 240 seconds]
meh` has joined #nixos
<ixxie> jtojnar: I'm having trouble with Inkscape and I suspect its because I recently update my channel
<silver-fox84> I'm trying to add a custom profile-set for pulseaudio but haven't had any luck so far.I've found the location in the nix store, but I'm not sure what derivation created the folder, nor how to add custom files to it.
Yaniel has joined #nixos
<{^_^}> [nixos-homepage] @garbas pushed to feature/2020-redesign « minor fixes for screen-sm »: https://git.io/JU0v1
<jasom> can I set environment variables from nix-shell?
<silver-fox84> jasom: you can use a shellHook
<symphorien[m]> yes, any "unused" argument to mkShell/mkDerivation will set the corresponding env var
<regnat> cole-h: Waaaah sorry looks like I sent you into a much bigger rabbit hole than what I intended to
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JU0v7
<cole-h> regnat: Hehe, no worries. At least it "works". I'll push my local changes in a little bit.
<cole-h> (after I clean up the diff)
eoli3n_ has quit [Ping timeout: 246 seconds]
__monty__ has joined #nixos
<regnat> It's strange that all the options don't show-up in the manual as it's generated by nix show-config --json. So libmain should definitely be loaded at that point
<regnat> (going to bed right now, happy to look at the changes tomorrow morning :) )
<cole-h> The generated nix.json does include those options, but not the manpage :(
<cole-h> regnat: Good night!
knupfer has quit [Ping timeout: 244 seconds]
redkahuna has joined #nixos
<{^_^}> [nixpkgs] @vcunat pushed 4 commits to master: https://git.io/JU0fv
seku has joined #nixos
<{^_^}> [nixpkgs] @vcunat closed pull request #96251 → linux_testing_bcachefs: 5.3 -> 5.7 → https://git.io/JUJVQ
<{^_^}> [nixpkgs] @vcunat merged pull request #97599 → Update bcachefs, fix build in hydra → https://git.io/JUcx3
<{^_^}> [nixpkgs] @vcunat closed pull request #91749 → linux_testing_bcachefs: 5.3 -> 5.7 → https://git.io/JJvym
rihards has quit [Quit: rihards]
clueclue has joined #nixos
<ornxka> Problem: libstdc++.so.6: cannot open shared object file: No such file or directory
<clueclue> Hi folks, I want to package spotdl but it returns 'pathlib-1.0.1 not supported for interpreter python3.8' could some Python guru suggest a path forward? Thank you.
ericsagnes has joined #nixos
<worldofpeace> clueclue: the pathlib module was introduced into python 3.4
<worldofpeace> I believe that's why u will see that error, it's because you don't need it
gustavderdrache has quit [Quit: Leaving.]
<worldofpeace> what's likely is that spotdl wants to use a pathlib module from pypi to backport the functionality to support older python versions. though, I don't think we support any in nixpkgs anymore
kenran has joined #nixos
<evanjs> Mrm pretty sure I saw something like this with asyncio
azure has joined #nixos
kenran has quit [Ping timeout: 272 seconds]
azure is now known as Guest77936
Guest45000 has quit [Ping timeout: 272 seconds]
stiell has quit [Ping timeout: 272 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lsix has joined #nixos
lsix has quit [Client Quit]
<{^_^}> [nixpkgs] @samlich closed pull request #98179 → dvdbackup: add dvdread-6.1 patch → https://git.io/JU0eG
stiell has joined #nixos
<{^_^}> [nixos-homepage] @garbas merged pull request #538 → Re-do "improve links" → https://git.io/JURh2
<{^_^}> [nixos-homepage] @garbas pushed 2 commits to feature/2020-redesign: https://git.io/JU0J6
<{^_^}> [nixos-homepage] @garbas merged pull request #537 → add Helsinki Systems → https://git.io/JUR7O
<{^_^}> [nixos-homepage] @garbas pushed 2 commits to master: https://git.io/JU0JX
clueclue has quit [Remote host closed the connection]
NeoCron has quit [Remote host closed the connection]
<judson> Are folks using flakes? I was reading Eelco's post about them from May and got all exicted again.
<judson> *excited
<worldofpeace> judson: using them on my deployed system rn
<judson> How's that working? Well?
kahiru has quit [Quit: No Ping reply in 180 seconds.]
<cole-h> I'm also using flakes. Works well for me :)
silver-fox84 has quit [Remote host closed the connection]
spudly- has joined #nixos
kahiru has joined #nixos
ris has quit [Read error: Connection reset by peer]
sputny has quit [Ping timeout: 244 seconds]
sputny has joined #nixos
spudly has quit [Ping timeout: 256 seconds]
spudly- is now known as spudly
veleiro has quit [Ping timeout: 240 seconds]
n9nes has quit [Quit: ZNC 1.8.2 - https://znc.in]
civodul has quit [Quit: ERC (IRC client for Emacs 27.1)]
n9nes has joined #nixos
omneh has joined #nixos
omneh has joined #nixos
omneh has quit [Changing host]
nikivi has joined #nixos
omnipotententity has quit [Ping timeout: 240 seconds]
nikivi has quit [Client Quit]
nikivi has joined #nixos
redkahuna has quit [Ping timeout: 260 seconds]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
Pidgeotto has joined #nixos
Pidgeotto has quit [Excess Flood]
fzakaria has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
fzakaria has joined #nixos
omneh has quit [Remote host closed the connection]
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
nikivi has joined #nixos
nikivi has quit [Client Quit]
nikivi has joined #nixos
nikivi has quit [Client Quit]
fendor has quit [Read error: Connection reset by peer]
Rusty1 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<{^_^}> [nixpkgs] @risicle merged pull request #98149 → python3.pkgs.libiio: fix build → https://git.io/JUR8V
<{^_^}> [nixpkgs] @risicle pushed 2 commits to master: https://git.io/JU0TU
<{^_^}> [nixpkgs] @diegs opened pull request #98182 → gopls: 0.4.4 -> 0.5.0 → https://git.io/JU0TO
rprije has joined #nixos
erasmas has quit [Quit: leaving]
alp has quit [Ping timeout: 272 seconds]
CyberManifest has joined #nixos
__monty__ has quit [Quit: leaving]
Farian has joined #nixos
Farian has left #nixos ["Bye"]
<{^_^}> [nixpkgs] @mlvzk opened pull request #98183 → discocss: init at 0.1.0 → https://git.io/JU0TK
xd1le has quit [Read error: Connection reset by peer]
Fare has quit [Ping timeout: 240 seconds]
xd1le has joined #nixos
* fzakaria waves
cosimone has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @doronbehar merged pull request #98152 → gnomeExtensions.gsconnect: 39 -> 41 → https://git.io/JUREZ
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JU0Tx
<{^_^}> [nixpkgs] @risicle opened pull request #98184 → lockdep: 4.1.2 -> 5.0.21, fix build, enable tests → https://git.io/JU0Tp
<cole-h> fzakaria: Is there a reason you wave every so often? :P
elsanchez has joined #nixos
<fzakaria> I like saying hi.
<fzakaria> if i were to walk up to a group of people in real life; i'd say hello.
<fzakaria> I try to do the same virtually :)
<cole-h> I see. Interesting.
<fzakaria> I like to also show that i'd like to be part of the group socially rather than just blasting in with a question and leaving ;) (which I still might do lol)
<{^_^}> [nixpkgs] @jorsn opened pull request #98185 → python: fix passing wrong qt5 version to pythonInterpreters → https://git.io/JU0Th
jumper149 has quit [Quit: WeeChat 2.9]
stiell has quit [Ping timeout: 240 seconds]
<cole-h> Heh, fair. But you can also do that by hanging around and answering questions ;)
philr has joined #nixos
ransom has joined #nixos
alp has joined #nixos
<fzakaria> i try to do that too.
<fzakaria> I'm on discord more so though;
<fzakaria> and discourse. I like the async nature of discourse.
<fzakaria> (I'm a sucker for e-mail lists)
<samueldr> (and here I tought you were trying to start one of those stadium waves)
<{^_^}> [nixpkgs] @aanderse merged pull request #98017 → tomcat-native: 1.2.24 -> 1.2.25 [20.09] → https://git.io/JU4aL
<{^_^}> [nixpkgs] @aanderse pushed 2 commits to release-20.09: https://git.io/JU0ks
j__ has quit [Ping timeout: 272 seconds]
tobeportable has quit [Ping timeout: 272 seconds]
stiell has joined #nixos
superherointj has quit [Quit: Leaving]
werner291 has quit [Quit: werner291]
<iwq> is enableParallelBuilding in stdenv.mkDerivation true or false by default?
<{^_^}> [nixpkgs] @lopsided98 opened pull request #98186 → poco: propagate dependencies imported by CMake scripts → https://git.io/JU0kK
alp has quit [Ping timeout: 272 seconds]
mbrgm_ has joined #nixos
mbrgm has quit [Ping timeout: 244 seconds]
mbrgm_ is now known as mbrgm
orivej has quit [Ping timeout: 256 seconds]
cognemo has quit [Remote host closed the connection]
cognemo has joined #nixos
joesventek has quit [Quit: Quit]
xd1le has quit [Read error: Connection reset by peer]
alp has joined #nixos
joesventek has joined #nixos
xd1le has joined #nixos
kenran has joined #nixos
<cole-h> True by default, but I think it's false by default when using cmake?
CyberManifest has quit [Quit: Leaving...]
kenran has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @mweinelt opened pull request #98187 → nixos/babeld: lock down service → https://git.io/JU0kA
sputny has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @zachcoyle opened pull request #98188 → vimPlugins.vim-nerdtree-syntax-highlight: init at 2020-07-19 → https://git.io/JU0kx