migrate to stable
This commit is contained in:
parent
f6f6c251b8
commit
ffd78d53bf
7 changed files with 7 additions and 24 deletions
|
@ -38,7 +38,7 @@
|
|||
hardware.trackpoint.enable = true;
|
||||
services.fprintd = {
|
||||
enable = true;
|
||||
package = pkgs.unstable.fprintd-thinkpad;
|
||||
package = pkgs.fprintd-thinkpad;
|
||||
};
|
||||
|
||||
hardware.nvidiaOptimus.disable = true;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
services = {
|
||||
fwupd = {
|
||||
enable = true;
|
||||
package = pkgs.unstable.fwupd;
|
||||
package = pkgs.fwupd;
|
||||
};
|
||||
|
||||
tlp = {
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
let
|
||||
unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
|
||||
etesync-dav = import ./packages/etesync-dav/default.nix;
|
||||
in
|
||||
{
|
||||
imports =
|
||||
|
@ -18,18 +17,10 @@ in
|
|||
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
packageOverrides = pkgs: {
|
||||
unstable = import unstableTarball {
|
||||
config = config.nixpkgs.config;
|
||||
};
|
||||
cyplo = import /home/cyryl/dev/nixpkgs {
|
||||
config = config.nixpkgs.config;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
wget git gnupg curl tmux python36Packages.glances htop atop firefox home-manager alacritty pciutils powertop linuxPackages_hardened.bcc ripgrep-all fd dnsutils
|
||||
wget git gnupg curl tmux python36Packages.glances htop atop firefox home-manager alacritty pciutils powertop ripgrep-all fd dnsutils
|
||||
];
|
||||
|
||||
i18n.defaultLocale = "en_GB.UTF-8";
|
||||
|
|
|
@ -2,12 +2,4 @@
|
|||
{
|
||||
networking.firewall.allowedTCPPortRanges = [ { from = 1716; to = 1764; } ];
|
||||
networking.firewall.allowedUDPPortRanges = [ { from = 1716; to = 1764; } ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnomeExtensions.gsconnect
|
||||
(
|
||||
vim_configurable.override {
|
||||
python = python3;
|
||||
}
|
||||
)
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,6 +5,6 @@
|
|||
user = "cyryl";
|
||||
dataDir = "/home/cyryl/.syncthing";
|
||||
openDefaultPorts = true;
|
||||
package = pkgs.unstable.syncthing;
|
||||
package = pkgs.syncthing;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
endif
|
||||
'';
|
||||
|
||||
vam.knownPlugins = unstable.vimPlugins;
|
||||
vam.knownPlugins = vimPlugins;
|
||||
vam.pluginDictionaries = [
|
||||
{ names = [
|
||||
"ack-vim"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{
|
||||
users.users.cyryl = {
|
||||
packages = with pkgs; [
|
||||
(unstable.vscode-with-extensions.override {
|
||||
(vscode-with-extensions.override {
|
||||
vscodeExtensions = with vscode-extensions; [ bbenoist.Nix ]
|
||||
++ vscode-utils.extensionsFromVscodeMarketplace [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue