Switch to stable branch and update inputs
This commit is contained in:
parent
233f05ec3a
commit
bb57760151
6 changed files with 196 additions and 177 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ config, lib, pkgs, pkgs-unstable, ... }:
|
||||
{
|
||||
services.pcscd.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
environment.systemPackages = with pkgs-unstable; [
|
||||
eid-mw
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, nixpkgs, ... }:
|
||||
{ config, lib, pkgs, nixpkgs, pkgs-unstable, nixpkgs-unstable, ... }:
|
||||
{
|
||||
|
||||
nix = {
|
||||
|
|
@ -20,11 +20,11 @@
|
|||
experimental-features = nix-command flakes
|
||||
'';
|
||||
nixPath = [
|
||||
"nixpkgs=${nixpkgs}"
|
||||
"nixpkgs=${nixpkgs-unstable}"
|
||||
];
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
environment.systemPackages = with pkgs-unstable; [
|
||||
wget
|
||||
inetutils
|
||||
openvpn
|
||||
|
|
@ -47,9 +47,8 @@
|
|||
lsof
|
||||
dnsutils
|
||||
];
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
fonts = {
|
||||
fonts = with pkgs; [
|
||||
fonts = with pkgs-unstable; [
|
||||
corefonts # Microsoft free fonts
|
||||
meslo-lgs-nf
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue