Bump flake.lock; add spotify

This commit is contained in:
Felix Suchert 2024-03-18 15:00:38 +01:00
parent 6a6e3ef8ae
commit d5cd943e8f
Signed by: feliix42
GPG key ID: 24363525EA0E8A99
3 changed files with 27 additions and 14 deletions

View file

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, unstable, ... }: { config, pkgs, unstable, lib, ... }:
#let #let
# use unstable nixpkgs for some specific packages that are still in-dev: # use unstable nixpkgs for some specific packages that are still in-dev:
@ -167,7 +167,7 @@
programs.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;
enableSSHSupport = true; enableSSHSupport = true;
pinentryFlavor = "curses"; pinentryPackage = lib.mkForce pkgs.pinentry-curses;
}; };
# ------------ programs ----------------------------------------------------- # ------------ programs -----------------------------------------------------
@ -238,7 +238,6 @@
nushell nushell
## password management ## password management
pass pass
pinentry-curses
## admin foo ## admin foo
ansible ansible
## mail ## mail
@ -321,6 +320,7 @@
## video and media applications ## video and media applications
zoom-us zoom-us
#unstable.teams #unstable.teams
spotify
mpv mpv
ffmpeg-full ffmpeg-full
musikcube musikcube

View file

@ -2,9 +2,7 @@
"nodes": { "nodes": {
"mlir": { "mlir": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": "nixpkgs"
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1710148658, "lastModified": 1710148658,
@ -23,11 +21,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1710123225, "lastModified": 1710622004,
"narHash": "sha256-j3oWlxRZxB7cFsgEntpH3rosjFHRkAo/dhX9H3OfxtY=", "narHash": "sha256-6zR642tXcZzzk3C8BHxlCrR0yh8z8zMXLiuXpWDIpX0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "ad2fd7b978d5e462048729a6c635c45d3d33c9ba", "rev": "968952f950a59dee9ed1e8799dda38c6dfa1bad3",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -52,21 +50,36 @@
"type": "indirect" "type": "indirect"
} }
}, },
"nixpkgs_2": {
"locked": {
"lastModified": 1710631334,
"narHash": "sha256-rL5LSYd85kplL5othxK5lmAtjyMOBg390sGBTb3LRMM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c75037bbf9093a2acb617804ee46320d6d1fea5a",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-unstable",
"type": "indirect"
}
},
"root": { "root": {
"inputs": { "inputs": {
"mlir": "mlir", "mlir": "mlir",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs_2",
"unstable": "unstable" "unstable": "unstable"
} }
}, },
"unstable": { "unstable": {
"locked": { "locked": {
"lastModified": 1709961763, "lastModified": 1710631334,
"narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", "narHash": "sha256-rL5LSYd85kplL5othxK5lmAtjyMOBg390sGBTb3LRMM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "rev": "c75037bbf9093a2acb617804ee46320d6d1fea5a",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -13,7 +13,7 @@
mlir = { mlir = {
#url = "github:Feliix42/mlir.nix/main"; #url = "github:Feliix42/mlir.nix/main";
url = "github:Feliix42/mlir.nix/circt"; url = "github:Feliix42/mlir.nix/circt";
inputs.nixpkgs.follows = "nixpkgs"; # inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };